/* =========================================
   RESET & VARIABLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --PrimaryColor: #788E37;
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;
     --SecondaryColor: #122939;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ════════════════════════════════════════════════════════
   FONT FACES
════════════════════════════════════════════════════════ */
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Semibold.eot');
    src: url('../fonts/SFProDisplay-Semibold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProDisplay-Semibold.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Semibold.woff') format('woff'),
        url('../fonts/SFProDisplay-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Thin.eot');
    src: url('../fonts/SFProDisplay-Thin.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProDisplay-Thin.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Thin.woff') format('woff'),
        url('../fonts/SFProDisplay-Thin.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Bold.eot');
    src: url('../fonts/SFProDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProDisplay-Bold.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Bold.woff') format('woff'),
        url('../fonts/SFProDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Medium.eot');
    src: url('../fonts/SFProDisplay-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProDisplay-Medium.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Medium.woff') format('woff'),
        url('../fonts/SFProDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFProDisplay-Regular.eot');
    src: url('../fonts/SFProDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SFProDisplay-Regular.woff2') format('woff2'),
        url('../fonts/SFProDisplay-Regular.woff') format('woff'),
        url('../fonts/SFProDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}





body {
  font-family: 'SF Pro Display';
   font-weight: 400;
    color: var(--BlackColor);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    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 {
    /* background: linear-gradient(90deg, #F98C17 0%, #BC4906 50%, #F98C17 100%); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; */
    color: var(--PrimaryColor);
    font-size:2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}


.same-heading h2 .highlight{color: var(--PrimaryColor); font-weight: 600;}

.same-heading h3 {
   
    color: #122939;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #616161;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}




.bg-gray {
    background: #F1F1F1;
}

.max-wid-50 {
    width: 100%;
    max-width: 50%;
}

.max-wid-80 {
    width: 100%;
    max-width: 80%;
}

.same-heading.text-center .max-wid-50 {
    margin: 0 auto;
}

.same-heading.white-text :is(h2, p) {
    color: var(--WhiteColor);
    background: linear-gradient(90deg, var(--WhiteColor) 0%, var(--WhiteColor) 50%, var(--WhiteColor) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

.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: 400;
  letter-spacing: 0.1rem;
  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.7rem;
    border-radius: 50px;
    font-weight: 500;
    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: #788E37;
    color: var(--WhiteColor);
    border-color: #788E37;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}

.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);
    color: var(--WhiteColor);
    border-color: var(--PrimaryColor);
}


.btn-secondary {
    background: var(--SecondaryColor);
    border: solid 1px var(--SecondaryColor);
    color: var(--WhiteColor);
}

.btn-secondary:hover,.btn-secondary:focus,.btn-secondary:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}




.btn-white {
    background: var(--WhiteColor);
    border: solid 1px var(--WhiteColor);
    color: #788E37;
}

.btn-white:hover,.btn-white:focus,.btn-white:active {
 background: var(--PrimaryColor);
border-color:var(--PrimaryColor);
color: var(--WhiteColor);
}



/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    /* position: sticky; */
    background: var(--WhiteColor);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.header.headerfix {
    background: var(--WhiteColor);
    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;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header .nav-content {
    display: flex;
    align-items: center;

}
.header .nav-content .logo img{max-height: 4rem;}
.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    margin-left: auto;
}
.header .nav-actions{margin-left: 3rem;}


.header .nav-links a:not(.btn) {
    /* font-weight: 300; */
    font-size: 0.9rem;
    color: #122836;
    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(--PrimaryColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;}

.header .nav-links a:hover:before{    width: 100%;}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}



.header .nav-links .btn{margin-left: 1rem;}

/* .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: 10rem 0rem;
background: url(../images/banner-bg.jpg)no-repeat center top/cover;
overflow: hidden;
/* margin-top: -8rem; */
min-height: 100vh;
display: flex; align-items: center;justify-content: center;
}


/* Content */
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 40rem;
  border-radius: 1rem;
}

/* Title */
.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

/* .hero-section .highlight {
  background: linear-gradient(to top, #F98C17 50%, #BC4906 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
} */

/* Text */
.hero-section p {
  font-size: 1rem;
  color: var(--WhiteColor);
  margin: 1.2rem 0 1.8rem;
  line-height: 1.6;
}




/* Steps */
.flow-section .flow-steps {
  margin-top: 8rem;
  position: relative;
}

/* Step */
.flow-section .step {
  position: relative;
}

/* Icon */
.flow-section .icon {
  width: 3rem;
  height: 3rem;
  stroke: var(--PrimaryColor);
  margin-bottom: 0.8rem;
}

/* Label */
.flow-section .step p {
font-size: 1.1rem;
font-weight: 400;
color: var(--BlackColor);margin-bottom: 0;
}

/* Dotted connector */
.flow-section .step::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: -50%;
  width: 100%;
  height: 10px;
  background: url(../images/dashed-border.png)no-repeat center top;
}

.flow-section .col-3:last-child .step::before {
  display: none;
}

.problem-solution-section{background: #E8F4FD;}
.problem-solution-section .problem-top-heading{border-bottom: solid 1px #00000033; padding-bottom: 4rem;}
.problem-solution-section .ps-card{background: #FFFFFF; padding: 2rem; border-radius: 20px; height: 100%;}
.problem-solution-section .ps-card .icon{width: 2.3rem; height: 2.3rem; margin-bottom: 1rem; color: #122939;}
.problem-solution-section .ps-card p{color: var(--PrimaryColor);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;}


/* Feature Box */
.real-world-section .feature-box {
  text-align: center;
  padding: 1rem;
}

/* Icon Circle */
.real-world-section .icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1rem;
  border-radius: 20px;
  background: #E8F4FD;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-world-section .icon-wrap svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke: #122939;
}

/* Title */
.real-world-section .feature-box h5 {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  color: var(--PrimaryColor);
  margin-bottom: 0.5rem;
}

/* Text */
.real-world-section .feature-box p {
    color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}

.pilot-section{background: #F6F6F6;}
.pilot-section .tag{color: #818181;}

/* GRID */
.pilot-section .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

/* Grid items */
.pilot-section .grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 0rem;
}

.pilot-section .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Large left image */
.pilot-section .grid-item.large {
  grid-row: span 2;
}

/* Overlay label */
.pilot-section .grid-item .title {
  position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to top, #000, transparent);
    width: 100%;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    padding: 1rem 1rem;
    min-height: 130px;
    display: flex;
    align-items: end;
}

/* Dark overlay */
/* .pilot-section .grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
} */

.dot-list {list-style: disc; margin-left: 1rem;}
.dot-list li{    color: #545454;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7; padding: 0.2rem 0;}





    
/* Info Boxes */
.age-section .info-box {
  background: #F6F6F6;
  padding: 1rem;
  border-radius: 0.8rem;
  text-align: left;
}

.age-section .info-box .label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ADADAD;
  margin-bottom: 0.5rem;
}

.age-section .info-box ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.age-section .info-box ul li {
  font-size: 0.85rem;
  padding: 3px 0;
  color: #616161;
  display: flex; align-items: center;flex-wrap: wrap;gap: 0.3rem;
}
.age-section .info-box ul li svg{width: 1rem; height: 1rem; color: #616161;}


.age-section .info-box.after .label{color: var(--PrimaryColor);}
.age-section .info-box.after ul li svg{color: var(--PrimaryColor);}
.age-section .info-box.after{background: #FFF5EF;}
.age-section .age-card{width: 100%; text-align: center;}



.checkout-section {background: url(../images/checkout-bg.jpg)no-repeat center top/cover;}
.check-list li{color: #545454; font-size: 1rem;font-weight: 400;line-height: 1.7; position: relative; padding: 0.3rem 0 0.3rem 1.8rem;}
.check-list li .check-icon{position: absolute; left: 0; top: 0.2rem; }
.check-list li .check-icon svg{width: 1rem; height: 1rem;}

.checkout-section  .check-list li{color: var(--WhiteColor);}


.identity-section {overflow: hidden; }
.identity-section .bg-text-with-img{position: relative; margin-top: 5rem;}
/* .identity-section .phone-wrapper{position: absolute; left: 60%; transform: translateX(-50%); top: 0;} */
.identity-section .phone-wrapper{    margin-top: -19rem;
    width: 100%;
    max-width: 50%;
    margin-left: 38%;}
.identity-section .bg-text{   color: #122939; font-size: clamp(4rem, 16vw, 18rem);font-weight: 700; line-height: 1;margin-bottom: 0; text-align: center; }
.identity-section .bg-text  .primary-text{color: var(--PrimaryColor);}
.identity-section .store-buttons {margin-top: -13rem;
    position: relative;
    z-index: 2;}
.identity-section .store-buttons .title{color: #373737; font-size: 1rem; font-weight: 500;margin-bottom: 0.8rem;}
.identity-section .store-icons-list{display: flex; align-items: center; gap: 0.5rem;flex-wrap: wrap;}
.store-icons-list .btn-secondary {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s ease;
}


.store-icons-list .btn-secondary  .store-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.store-icons-list .btn-secondary  img {
  width: 1.5rem;
  height: auto;
  filter: invert(1) brightness(19.5);
}
.store-icons-list .btn-secondary  .text{text-align: left;}
.store-icons-list .btn-secondary  .text span {
  display: block;
  font-size: 0.6rem; font-weight: 400;
  color: var(--WhiteColor);
  text-transform: uppercase;
    line-height: normal
}

.store-icons-list .btn-secondary  .text strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  font-weight: 400;
}



.idaho-fall-bg{background: url(../images/idaho-fall-bg.jpg)no-repeat center top/cover;    min-height: 97vh;}
.idaho-fall-bg .section-bottom-btn{margin-top: 2.5rem;}
.idaho-fall-bg .section-bottom-btn .btn-primary{background: #0E2333; border-color: #0E2333;}
.idaho-fall-bg .section-bottom-btn .btn-white{color: #0E2333;}
.idaho-fall-bg .section-bottom-btn .btn-white:hover{background: #0E2333; border-color:#0E2333 ; color: var(--WhiteColor);}






.footer {
  padding: 2.5rem 0 0;
  color: #3C3C3C;
}

/* Logo */
.footer .footer-logo {
  display: block;
  width: 100%; max-width: 9rem;
  margin-bottom: 1rem;
}

/* Left Text */
.footer .footer-left p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0.625rem 0;
}

.footer .highlight {
  font-size: 0.9rem;
  color: var(--PrimaryColor);
  font-weight: 500;

}

/* Columns */
.footer .footer-col h4 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  font-weight: 500;color: var(--BlackColor);
}

.footer .footer-col ul li {
  padding: 0.3rem 0;
}

.footer .footer-col ul li a {
  text-decoration: none;
  color: #565656;
  font-size: 0.875rem;
  transition: 0.3s;
}

.footer .footer-col ul li a:hover {
  color: var(--PrimaryColor);
}

/* Bottom */
.footer .footer-bottom {
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: #7B7B7B;
  border-top: 0.0625rem solid #F0F0F0;
  padding:1rem 0;
}


/* =========================================
   LOGO CONTEXT MENU
   ========================================= */

#logo-context-menu {
  position: fixed;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 0.75rem;
  padding: 0.375rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13), 0 2px 8px rgba(0, 0, 0, 0.07);
  min-width: 14rem;
  display: none;
  animation: ctxFadeIn 0.14s ease;
}

@keyframes ctxFadeIn {
  from { opacity: 0; transform: scale(0.96) translateY(-4px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

#logo-context-menu .ctx-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.1s ease;
  white-space: nowrap;
  text-decoration: none;
}

#logo-context-menu .ctx-item:hover {
  background: rgba(0, 0, 0, 0.055);
  color: #1a1a1a;
}

#logo-context-menu .ctx-item svg {
  width: 0.9375rem;
  height: 0.9375rem;
  opacity: 0.55;
  flex-shrink: 0;
}

#logo-context-menu .ctx-separator {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0.3rem 0.25rem;
}





.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
}



/* Wrapper */
.dw-cookie-wrapper {
   position: fixed;
    box-sizing: border-box;
    z-index: 2147483647;
    background-color: #fff;
    opacity: 1;
    display: block;
    transform: translateY(0px);
    bottom: 0px;
    right: 0px;
    max-width: 320px;
    width: calc(100% - 20px);    
    box-shadow: 0 -0.3125rem 1.25rem rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform, top, left, right, bottom, max-width, width;
    margin: 1rem;
    border-radius: 10px;
    padding: 2rem;



}

/* Inner layout */
.dw-cookie-card {
    max-width: 75rem;
    margin: auto;
    display: flex; 
    align-items: center;
   flex-direction: column;
    gap: 1rem; 
}

/* Text */
.dw-cookie-text h4 {
  font-size: 1.2rem;
    color: var(--BlackColor);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.dw-cookie-text p {
      color: #555555;
    font-size: 0.9rem; line-height:1.6 ;
    margin-bottom: 0.5rem;
}

.dw-cookie-text a {
    color: var(--PrimaryColor);
    font-weight: 500;
    text-decoration: none;
}

.dw-cookie-wrapper .dw-cookie-actions .btn{    font-size: 0.9rem;}
/* Buttons */
.dw-cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-direction: column;
    width: 100%;
}


.inner-banner{    background: var(--PrimaryColor);padding: 5rem 0}
.inner-banner h1{      font-size: 2.5rem;
    font-weight: 600;
    color: var(--WhiteColor);
    line-height: 1.1;
}

.static-pages-outer .same-heading h2{    font-size: 2rem;}
.static-pages-outer .same-heading h3{    font-size: 1.4rem;}
.legal-highlight {
  background: #788e3717;
  padding: 1.2rem;
  border-left: 4px solid var(--PrimaryColor);
  margin: 1rem 0 1.5rem;
}
.legal-highlight p{margin-bottom: 0;}

.static-pages-outer .dot-listing{margin: 1rem 0 1rem 1rem;}
.static-pages-outer .dot-listing li {
    padding: 5px 0;
    list-style: disc;
    font-weight: 400;
    font-size: 1rem;
    color: #3B3B3B;
    line-height: 1.6;
}




