/* =========================================
   RESET & VARIABLES
   ========================================= */

@font-face {
    font-family: 'Suisse Intl';
    src: url('../fonts/SuisseIntl.eot');

    src: url('../fonts/SuisseIntl.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SuisseIntl.woff2') format('woff2'),
        url('../fonts/SuisseIntl.woff') format('woff'),
        url('../fonts/SuisseIntl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
    /* Colors */
    --PrimaryColor: #69516E;
    /* --PrimaryColor: #69516E; */
    --Dark: #0F172A;
    --Darker: #020617;
    --BlackColor: #000;
    --Slate: #525252;
    --Light: #F8FAFC;
    --WhiteColor: #FFFFFF;
    --border: #E2E8F0;

    /* Typography */
    --font-sans: 'Inter', serif;

    /* Spacing */
    --wrap-width: 1280px;
    --section-pad: 5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-sans);
}







body {
    font-family: var(--font-sans);
    color: var(--Dark);
    line-height: 1.5;
    background-color: var(--WhiteColor);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;

}



.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--BlackColor);
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
}

.same-heading.text-center .max-wid-80 {
    margin: 0 auto 1rem;
}


.bg-gray {
    background: #F4F4F4;
}

.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 1rem;
}

.same-heading.white-text :is(h2, h1, h3, p) {
    color: var(--WhiteColor);
}

.same-section .section-bottom-btn {
    margin-top: 1.5rem;
}

.section-bottom-btn {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.section-bottom-btn.text-center {
    justify-content: center;
}

.primary-text {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    display: block;
    margin-bottom: 10px;
}

/* =========================================
   UTILITIES
   ========================================= */
@media (min-width: 1199px) {
    .container {
        max-width: var(--wrap-width);

    }
}


p {
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;


}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.7rem;
    border-radius: 9999px;
    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(-3px) scale(1.02);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
    transform: skewX(-20deg);
    transition: all 0.5s;
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after {
    left: 130%;
    transition: all 0.5s;
}

.btn svg {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    border: 1px solid var(--PrimaryColor);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--PrimaryColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-outline-primary {
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
    border: 1px solid 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: #333333;
    border-color: solid 1px #333333;
    color: var(--WhiteColor);
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background: #333333 !important;
    border-color: #333333 !important;
}

.btn-outline {
    background: transparent;
    border-color: #BABABA;
    color: #BABABA;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
    border-color: #727272;
    background: var(--WhiteColor);
    color: #727272;
}

.btn-white {
    background: var(--WhiteColor);
    color: var(--PrimaryColor);
}

.btn-white:hover,
.btn-white:focus,
.btn-white:active {
    background: #f1f5f9 !important;
    color: var(--PrimaryColor);
}

.btn-dark {
    background: var(--Dark);
    color: var(--WhiteColor);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    background: #334155 !important;
    color: var(--WhiteColor);
}

/* =========================================
   1. NAVBAR
   ========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(8px);
    /* border-bottom: 1px solid var(--border); */
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.headerfix {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border);
    padding: 0.8rem 0;
}

.header .nav-content {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}

.header .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    border: none;
    gap: 2.2rem;
    padding-left: 3rem;
}



.header .nav-links a:not(.btn) {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--BlackColor);
    padding: 0.5rem 0;
}

.header .nav-links a:hover {
    color: var(--PrimaryColor);
}

.header .mobile-toggle {
    display: none;
}


.header .nav-actions.active {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 360px;
    /* Rough positioning adjustment */
    z-index: 101;
}

.header .mobile-toggle {
    font-size: 1.5rem;
    color: var(--Dark);
    background: none;
    border: none;
    cursor: pointer;
}


.clearunited-submenu {
    text-align: right;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 2;
    background: #fff;
}

.clearunited-submenu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;

}

.clearunited-submenu ul li.specs-dropdwon-full svg {
    width: 1rem;
    height: 1rem;

}

.clearunited-submenu ul li a:not(.btn) {
    font-size: 0.8rem;
    font-weight: 400;
    color: #7b7b7b;
    position: relative;
    padding: 0 0.2rem;
}

.clearunited-submenu ul li.active>a:not(.btn) {
    color: var(--PrimaryColor);
    font-weight: 600;
}


/* .clearunited-submenu ul li+li {
    margin-left: 20px;
} */

.clearunited-submenu ul li.buy-li {
    border-left: 1px solid #ddd;
    margin-left: 5px;
    padding-left: 13px;
}

.clearunited-submenu ul li .btn-primary {
    padding: 0.3rem 1rem;
}


.clearunited-submenu .dropdown-menu-custom-full {
    position: absolute;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 9;
    text-align: center;
    border-top: 1px solid #ddd;
    padding: 2rem 1rem;
    opacity: 0;
    top: 0;
    transition: .3s;
    -webkit-transition: .3s;
    pointer-events: none;
}

.clearunited-submenu .specs-dropdwon-full:hover .dropdown-menu-custom-full,
.clearunited-submenu .specs-dropdwon-full.is-open .dropdown-menu-custom-full {
    opacity: 1;

    top: 95%;
    pointer-events: all;
}

.clearunited-submenu .dropdown-item-full {
    display: inline-block;
    text-align: center;

    color: var(--BlackColor);
    padding: 0 25px;
}

.clearunited-submenu .dropdown-item-full span {
    display: block;
    margin-bottom: 0.7rem;
}

.clearunited-submenu .dropdown-item-full img {
    max-height: 60px;
}

.clearunited-submenu .specs-dropdwon-full>a::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 40px;
    background: transparent;
}

.clearunited-submenu .dropdown-menu-listing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* =========================================
   2. HERO
   ========================================= */


.hero {
    padding: 7rem 0 3rem;
    position: relative;
    margin-top: -80px;
    border-bottom: solid 1px #D9D9D9;
    background: url(../images/banner-bg.jpg)no-repeat bottom center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.reclaim-title {
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 1.5rem;
    border: solid 1px #ffffff29;
    color: var(--BlackColor);
    background: #ffffff47;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    width: 100%;
    max-width: max-content;
}

.hero .hero-content h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--BlackColor);
}

.hero .hero-text {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 32rem;
    margin-bottom: 2rem;
    color: #575757;
}

/* Feature Boxes */
.hero .hero-features {
    display: flex;
    gap: 0.3rem;
    justify-content: space-between;
    margin-top: 3rem;
}

.hero .feature-box {
    padding: 0 0.8rem;
    flex: 1;
    border-right: solid 1px #0000001f;
}

.hero .feature-box:last-child {
    border-right: none;
}

.hero .feature-box .feature-title {
    font-size: 0.9rem;
    line-height: normal;
    color: var(--BlackColor);
    font-weight: 500;
}

.hero .feature-box .feature-text {
    font-size: 0.7rem;
    line-height: normal;
    text-transform: uppercase;
    color: #0000006b;
    margin-top: 1px;
}



/* ===== Foundation Row ===== */

.foundation-row {
    padding: 3rem 0;
    border-bottom: solid 1px #E0E0E0;
}

.what-clearUnited {
    padding: 3rem 0;
}

.what-clearUnited .same-heading h2 {
    font-size: 3rem;
    font-weight: 500;
}



.clearunited-section .foundation-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    color: #666666;
}

.clearunited-section .foundation-items {
    row-gap: 1.5rem;
}

.clearunited-section .foundation-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #5D5D5D;
}

.clearunited-section .foundation-item svg {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--PrimaryColor);
}

/* ===== Heading ===== */
.clearunited-section .section-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
}

.clearunited-section .section-description {
    font-size: 1rem;
    color: #6a6a6a;
    line-height: 1.6;
}

/* ===== Cards ===== */


.clearunited-section .info-card {
    height: 100%;
    padding: 1.5rem;
    border: 0.06rem solid #CFCFCF;
    border-radius: 10px;
    background-color: var(--WhiteColor);
}

.clearunited-section .info-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--PrimaryColor);
    margin-bottom: 0.6rem;
}

.clearunited-section .info-card p {
    font-size: 0.8rem;
    color: #575757;
    line-height: 1.6;
    margin: 0;
}




.exposed-life-section {
    background-color: var(--PrimaryColor);
    color: #ffffff;
}

/* ===== Left Content ===== */
.exposed-life-section h2 {
    font-size: 2.2rem;
    font-weight: 500;

}

.exposed-life-section .section-description {
    width: 100%;
    max-width: 75%;
    margin-bottom: 1.8rem;
}

/* ===== Risk List ===== */

.exposed-life-section .risk-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: #ffffff;
}

.exposed-life-section .risk-list svg {
    width: 1.2rem;
    height: 1.2rem;
    color: #ffffff;
}

/* ===== Right Card ===== */
.exposed-life-section .check-card {
    background-color: rgba(255, 255, 255, 0.10);
    padding: 2rem;
    border-radius: 0.8rem;
}

.exposed-life-section .check-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.exposed-life-section .check-card p {
    font-size: 0.9rem;
    color: #e6dde7;
    font-weight: 300;
    margin-bottom: 1.4rem;
}

/* ===== Input ===== */
.exposed-life-section .check-input {
    position: relative;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 3rem 0.75rem 1rem;
    border-radius: 50px;
    border: solid 1px #ffffff6c;

}

.exposed-life-section .check-input input {
    border: none;
    font-size: 0.8rem;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    background: none;
}

.exposed-life-section .check-input input:focus {
    outline: none !important;
    box-shadow: none !important;
}

.exposed-life-section .check-input input::placeholder {
    color: #e6dde7;
}

.exposed-life-section .scan-btn {
    position: absolute;
    top: 50%;
    right: 0.6rem;
    transform: translateY(-50%);
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    border: none;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exposed-life-section .scan-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--PrimaryColor);
}




/* ===== Feature Pills ===== */
.digital-private-section .feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.4rem;
}

.digital-private-section .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border: 0.06rem solid #E5E5E5;
    border-radius: 0.6rem;
    font-size: 0.9rem;
    color: #4a4a4a;
    background-color: #ffffff;
}

.digital-private-section .feature-item svg {
    width: 1rem;
    height: 1rem;
    color: #7a4b8d;
}


.one-identity-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
    background-image: radial-gradient(#e9e9e9 0.05rem, transparent 0.05rem);
    background-size: 1.4rem 1.4rem;
}

/* ===== Cards ===== */
.one-identity-section .identity-card-row {
    margin-bottom: 2.8rem;
}

.one-identity-section .identity-card {
    height: 100%;
    padding: 2rem;
    border: 0.06rem solid #e6e6e6;
    border-radius: 0.8rem;
    background-color: #ffffff;
    text-align: left;
}

.one-identity-section .identity-card svg {
    width: 1.4rem;
    height: 1.4rem;
    color: #7a4b8d;
    margin-bottom: 1rem;
}

.one-identity-section .identity-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--BlackColor);
    margin-bottom: 0.6rem;
}

.one-identity-section .identity-card p {
    font-size: 0.8rem;
    color: #575757;
    line-height: 1.6;
    margin: 0;
}





/* ===== Features ===== */
.gradient-img-bx {
    position: relative;
}

.gradient-img-bx::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255), transparent);
}

.life-economy-section .economy-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.life-economy-section .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.life-economy-section .feature-item .icon-img {
    width: 2.6rem;
}

.life-economy-section .feature-item h5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--BlackColor);
    margin: 0 0 0.2rem;
}

.life-economy-section .feature-item p {
    font-size: 0.85rem;
    color: #6b6b6b;
    margin: 0;
}

/* ===== Dashboard ===== */
.life-economy-section .dashboard-card {
    padding: 1.5rem;
    border: 0.06rem solid #e6e6e6;
    border-radius: 0.8rem;
    background-color: #ffffff;
}


.life-insurance-section {
    position: relative;
    min-height: 100vh;

}

.life-insurance-section .same-heading {
    position: relative;
    z-index: 2;
}

.life-insurance-section .section-note {
    font-size: 0.85rem;
    color: var(--PrimaryColor);
    font-weight: 600;

}

/* ===== Pills ===== */
.life-insurance-section .pill-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: 2rem 0;
}

.life-insurance-section .pill {
    padding: 0.35rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 50px;

    background-color: #ffffff;
    border: 0.06rem solid #ffffff;
    color: var(--PrimaryColor);
}

.life-insurance-section .pill .dot-icon {
    display: inline-block;
    width: 0.3rem;
    height: 0.3rem;
    background-color: var(--PrimaryColor);
    border-radius: 50%;
    margin-right: 0.5rem;
}


/* ===== Background Image ===== */
.life-insurance-section .background-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/insureace-work-bg.jpg");
    background-size: cover;
    background-position: center;
}


.clear-devices-section {
    padding: 4.5rem 0;
    background-color: #ffffff;
}

/* ===== Badge ===== */
.clear-devices-section .section-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    border-radius: 1rem;
    background-color: #ECECEC;
    color: var(--BlackColor);
    margin-bottom: 1rem;
}

/* ===== Typography ===== */
.clear-devices-section .section-title {
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
}

/* ===== Feature List ===== */
.dot-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.dot-list li {
    position: relative;
    padding: 0.2rem 0.2rem 0.2rem 1rem;
    margin-bottom: 0.7rem;
    font-size: 0.85rem;
    color: var(--BlackColor);
}

.dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.4rem;
    height: 0.4rem;
    background-color: var(--PrimaryColor);
    border-radius: 50%;
}





/* ===== Timeline ===== */
.how-it-works-section .timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6rem 0 2rem;
}

.how-it-works-section .timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/wave-dashed-border.svg')no-repeat center center;
    transform: translateY(-50%);
}

/* Timeline Item */
.how-it-works-section .timeline-item {
    position: relative;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    top: 4rem;
}

/* Dot */
.how-it-works-section .dot {
    width: 2px;
    height: 70px;
    background: var(--PrimaryColor);
    display: inline-block;
    position: relative;
    margin: 1rem auto;
    flex-shrink: 0;

}

.how-it-works-section .dot:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--PrimaryColor);
    display: inline-block;
    border-radius: 50%;
}

.how-it-works-section .dot:after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--PrimaryColor);
    display: inline-block;
    border-radius: 50%;
}



/* Text */
.how-it-works-section .timeline-item p {
    font-size: 0.85rem;
    line-height: normal;
    color: var(--PrimaryColor);
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    font-weight: 400;
    min-height: 60px;

}

/* Positioning */
/* .how-it-works-section .timeline-item.top p {
    margin-bottom: 1.2rem;
}

.how-it-works-section .timeline-item.bottom p {
    margin-top: 1.2rem;
} */

.how-it-works-section .timeline-item.top {
    top: -3rem;
}

.how-it-works-section .timeline-item.top p {
    order: 1;
}

.how-it-works-section .timeline-item.top .dot {
    order: 2;
}



/* Card */
.why-clearunited .why-card {
    height: 100%;
    border: 0.0625rem solid #CFCFCF;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    background-color: #ffffff;
}

/* Icon */
.why-clearunited .icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-clearunited .icon-box svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--PrimaryColor);
}

/* Card Content */
.why-clearunited .why-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--PrimaryColor);
}

.why-clearunited .why-card p {
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}


.life-hero {
    position: relative;
    min-height: 23rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #6b4a74, #3e2a46);
}

.life-hero canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Content */
.life-hero .container {
    z-index: 2;
}


.footer {
    border-top: solid 1px #f6f6f6;
    background-color: #ffffff;
    font-size: 0.875rem;
}

.footer .footer-top {
    padding: 3rem 0 2rem;
}


.footer ul a {
    text-decoration: none;
    font-size: 0.875rem;
    color: var(--BlackColor);
    padding: 0.5rem 0;
    display: block;
}

.footer a:hover {
    color: var(--PrimaryColor);
}

.footer-logo {
    max-width: 7rem;
}



/* Companies */
.footer-companies {
    padding: 1rem 0;
    border-top: 1px solid #C9C9C9;
    border-bottom: 1px solid #C9C9C9;
}

.footer .company-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw;
    font-size: 0.8125rem;
    color: #374151;
}

.footer .company-list a {
    font-size: 0.8rem;
    color: var(--BlackColor);
}

/* Bottom */
.footer .footer-bottom {
    padding: 1rem 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-bottom a {
    color: #6b7280;
}

.payment-icons span {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 0.75rem;
    padding: 0.25rem 0.4rem;
    border: 0.0625rem solid #d1d5db;
    border-radius: 0.25rem;
}



.purpose-driven-bx {
    max-width: 632px;
    margin: 130px auto 0;
    position: relative
}

.purpose-driven-bx ul {
    display: block
}

.purpose-driven-bx ul li {
    display: inline-block;
    position: absolute;
    z-index: 1
}

.purpose-driven-icon {
    width: 81px;
    height: 81px;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, .15);
    border-radius: 50%;
    background: url('../images/purpose-icon-sprite.png') 0 0/375px no-repeat #f5f5f5;
    display: inline-block;
    vertical-align: middle
}

.purpose-driven-icon1 {
    background-position: 19px 16px
}

.purpose-driven-icon2 {
    background-position: -57px 16px
}

.purpose-driven-icon3 {
    background-position: -140px 16px
}

.purpose-driven-icon4 {
    background-position: -225px 16px
}

.purpose-driven-icon5 {
    background-position: -310px 16px
}

.purpose-driven-title {
    font-size: 1rem;
    color: var(--PrimaryColor);
    font-weight: 500;
    margin-right: 17px
}

.purpose-driven-bx ul li:nth-child(1) {
    bottom: 70px;
    left: -81px
}

.purpose-driven-bx ul li:nth-child(2) {
    top: 33px;
    left: -33px
}

.purpose-driven-bx ul li:nth-child(3) {
    left: 276px;
    top: -68px
}

.purpose-driven-bx ul li:nth-child(3) .purpose-driven-title {
    display: block;
    margin-bottom: 10px;
    margin-right: 0
}

.purpose-driven-bx ul li:nth-child(4) {
    right: 14px;
    top: 33px
}

.purpose-driven-bx ul li:nth-child(4) .purpose-driven-title {
    float: right;
    vertical-align: middle;
    margin-right: 0;
    margin-left: 17px;
    margin-top: 27px
}

.purpose-driven-bx ul li:nth-child(5) {
    right: -87px;
    bottom: 70px
}

.purpose-driven-bx ul li:nth-child(5) .purpose-driven-title {
    float: right;
    vertical-align: middle;
    margin-right: 0;
    margin-left: 17px;
    margin-top: 27px
}

/* .white-card {
    height: 100%;
    border: 0.0625rem solid #CFCFCF;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    background-color: #ffffff;
}



.white-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--PrimaryColor);
}

.white-card p {
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 0;
}

.white-card .icon-box {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem;
    border-radius: 50%;
}

.white-card .icon-box img {
    max-width: 50%;
} */


.hero {
    position: relative;
}

.hero .free-dots {
    width: 218px;
    height: 218px;
    border-radius: 50%;
    background: var(--PrimaryColor);
    position: absolute;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(105, 78, 112, .7), 150px -150px 0 -80px var(--PrimaryColor);
    left: -170px;
    top: 30%;
    animation: 1.75s cubic-bezier(.66, 0, 0, 1) infinite pulse;
    -webkit-animation: 1.75s cubic-bezier(.66, 0, 0, 1) infinite pulse;
}

@keyframes pulse {

    100% {
        box-shadow: 0 0 0 45px rgba(105, 78, 112, 0), 150px -150px 0 -80px var(--PrimaryColor);
    }
}

.membership-hero .benefits {
    margin: 3rem 0;
}




.become-member-section .become-member-box ul {
    border-left: 1px solid #0000003d;
}

.become-member-section .become-member-box ul li {
    position: relative;
    padding: 2rem 0 2rem 2.5rem
}

.become-member-section .become-member-box ul li .count {
    position: absolute;
    top: -10px;
    left: -10px;
    background-color: #F4F4F4;
    color: #b2b2b2;
    font-size: 1rem;
    padding: 5px;
    font-weight: 600
}


.become-member-section .become-member-box ul li .icon {
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    border-radius: 5px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center
}

.become-member-section .become-member-box ul li h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--PrimaryColor);

}


.decentralized-video-section .video-box {
    position: relative;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    margin-bottom: 3rem;

}

.decentralized-video-section .video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.decentralized-video-section .video-box .play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    color: #7f7f7f;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .35);
    -webkit-box-shadow: 0 0 0 7px rgba(255, 255, 255, .35);
    transition: .2s ease-out;
    -webkit-transition: .2s ease-out;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.decentralized-video-section .note-txt {
    color: #545454;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.7;
}


.membership-banner-section svg {
    display: inline-block;
    width: 100%;
    height: auto;
}

.clearphone-subs-banner .clearunited-eligible {
    position: absolute;
    right: 40px;
    bottom: 20px;
}

.clearphone-subs-banner .clearunited-eligible img {
    width: 122px;
}

.purple-bg {
    background: #3f2d44;
    ;
}

.be-empowered-section .same-heading h3 {
    color: var(--WhiteColor);
}

.be-empowered-section .all-services-outer {

    -webkit-animation: 2s infinite pulse2;
    animation: 2s infinite pulse2;

    width: 38rem;
    height: 38rem;
    background: var(--PrimaryColor);
    border-radius: 50%;
    margin: 5rem auto;
    position: relative;
}


@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .3), 0 0 0 0 rgba(255, 255, 255, .2);
    }

    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0), 0 0 0 80px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.be-empowered-section .all-services-ul li {
    max-width: 95px;
    position: absolute
}

.be-empowered-section .all-services-ul li p {
    font-size: 0.8rem;
    color: var(--WhiteColor);
    margin-top: 5px;
    text-align: center;

}

.be-empowered-section .all-services-icon {
    width: 5rem;
    height: 5rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.be-empowered-section .all-services-icon img {
    max-width: 50%;
}

.be-empowered-section .all-services-ul li:nth-child(1) {
    left: 50%;
    top: -6%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.be-empowered-section .all-services-ul li:nth-child(2) {
    right: 20%;
    top: 1%
}

.be-empowered-section .all-services-ul li:nth-child(3) {
    top: 17%;
    right: 3%
}

.be-empowered-section .all-services-ul li:nth-child(4) {
    top: 40%;
    right: -5%
}

.be-empowered-section .all-services-ul li:nth-child(5) {
    bottom: 19%;
    right: -1%
}

.be-empowered-section .all-services-ul li:nth-child(6) {
    bottom: -13px;
    right: 17%
}

.be-empowered-section .all-services-ul li:nth-child(7) {
    bottom: -6%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.be-empowered-section .all-services-ul li:nth-child(8) {
    bottom: -13px;
    left: 17%
}

.be-empowered-section .all-services-ul li:nth-child(9) {
    bottom: 19%;
    left: -1%
}

.be-empowered-section .all-services-ul li:nth-child(10) {
    top: 40%;
    left: -5%
}

.be-empowered-section .all-services-ul li:nth-child(11) {
    top: 17%;
    left: 3%
}

.be-empowered-section .all-services-ul li:nth-child(12) {
    left: 20%;
    top: 1%
}

.be-empowered-section .all-services-phn-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    max-width: 40%;
}




.clear-phone-section {
    background-color: #ffffff;
}

.clear-phone-section .clear-phone-tabs {
    border: 1px solid var(--PrimaryColor);
    border-radius: 3rem;
    padding: 0.25rem;
    max-width: max-content;
    margin: 0 auto 3rem;
}

.clear-phone-section .nav-pills .nav-link {
    border-radius: 3rem;
    padding: 0.6rem 2rem;
    color: var(--PrimaryColor);
    font-weight: 400;
}

.clear-phone-section .nav-pills .nav-link.active {
    background-color: var(--PrimaryColor);
    color: var(--WhiteColor);
}

.clear-phone-section .phone-card {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.clear-phone-section .phone-card .clearphone-img {
    background: #f7f7f7;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.clear-phone-section .phone-card .clearphone-img .btn {
    display: block;
    margin: 1.5rem auto 0;
}



.clear-phone-section .clearphone-img img {
    margin: auto;
}

/* .clear-phone-section .phone-card img {
    max-height: 22rem;
} */
.clear-phone-section .phone-card h5 {
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 500;
    margin-bottom: 0.4rem;
    color: var(--PrimaryColor);
}

.clear-phone-section .phone-card .price {
    color: #575757;
    font-size: 1rem;
}



/* .clear-phone-section .sold-out {
    opacity: 0.5;
} */

.clear-phone-section .sold-ribbon {
    position: absolute;
    top: 1rem;
    left: -2.5rem;
    transform: rotate(-45deg);
    background: var(--PrimaryColor);
    color: var(--WhiteColor);
    padding: 0.4rem 3rem;
    font-size: 0.875rem;
    font-weight: 400;
}

.sold-out {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .5;
}

.clear-phone-section .See-Details-btn {
    text-align: center;
    margin: 2rem 0;
}

.clear-phone-section .See-Details-btn .btn {
    margin-bottom: 1rem;
}




.rewards-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;

    background: url(../images/rewards-banner.jpg)no-repeat center top/cover;
}



.rewards-banner .rewards-menu {
    position: absolute;
    right: 3rem;
    top: 1rem;
}

.rewards-banner .rewards-menu ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rewards-banner .rewards-menu ul li a {
    color: var(--WhiteColor);
    font-size: 0.9rem;
    font-weight: 400;
}

.rewards-banner .rewards-menu ul li a:hover {
    color: var(--PrimaryColor);
}

.rewards-banner .same-heading h1 {

    color: var(--WhiteColor);
    text-align: center;
}

/* =========================================
   REWARDS FORM
   ========================================= */
.join-today-form {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 10;
}

.join-today-form .form-circle-bg {
    background: #E8E6E8;
    border-radius: 50%;
    width: 550px;
    height: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
}

.join-today-form .form-circle-bg h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--BlackColor);
}

.join-today-form .form-circle-bg form {
    width: 100%;
    max-width: 400px;
}

.join-today-form .form-group {
    border-radius: 50px;
    margin-bottom: 0.5rem;
    padding: 0.2rem 1.5rem;
    display: flex;
    align-items: center;
    position: relative;
    height: 46px;
    border-radius: 30px;
    padding-left: 20px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #dedede;
    background: #f9f9f9;
}

.join-today-form .form-group .form-control {
    border: none;
    background: transparent;
    flex: 1;
    width: 0;

    height: 100%;
    outline: none;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
}

.join-today-form .form-group .form-control:focus {
    box-shadow: none !important;
}

.join-today-form .form-group .form-control::placeholder {
    color: #888;
    font-size: 0.8rem;
}

/* Country Picker */
.join-today-form .country-picker {
    position: relative;
    padding-left: 1rem;
}

.join-today-form .selected-country {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border-right: 1px solid #EEE;
    padding-right: 0.8rem;
    margin-right: 0.8rem;
    height: 100%;
    position: relative;
    z-index: 15;
    transition: background 0.2s;
}



.join-today-form .selected-country img {
    border-radius: 2px;
}

.join-today-form .chevron-down svg {
    width: 14px;
    height: 14px;
    color: #666;
    display: block;
}

.join-today-form .country-code {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
}

.join-today-form .country-picker input {
    text-align: left;
}

.join-today-form .country-dropdown {
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: #FFF;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: none;
    overflow: hidden;
    text-align: left;
}

.join-today-form .country-dropdown.active {
    display: block;
}

.join-today-form .search-country {
    padding: 0.8rem;
    border-bottom: 1px solid #d5d4d4;
}

.join-today-form .search-country .form-control {
    background: #F8F9FA;
    border: solid 1px #d5d4d4;
    border-radius: 4px;
    padding: 0.5rem;
    height: 35px;
    width: 100%;
    text-align: left;
}

.join-today-form .country-list {
    max-height: 250px;
    overflow-y: auto;
}

.join-today-form .country-list li {
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.join-today-form .country-list li:hover {
    background: #F8F9FA;
}

.join-today-form .country-list li img {
    width: 20px;
    border-radius: 2px;
}

.join-today-form .country-list li span {
    color: #AAA;
    margin-left: auto;
}

/* Password Group */
.join-today-form .password-group {
    position: relative;
}

.join-today-form .toggle-password {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #888;
    display: flex;
    align-items: center;
}

.join-today-form .toggle-password svg {
    width: 20px;
    height: 20px;
}

/* Referral Group */
.join-today-form .referral-group {
    padding: 0;
    overflow: hidden;
    border-radius: 50px;
}

.join-today-form .referral-group input {
    padding-left: 1.5rem;
}

.join-today-form .referral-label {
    background: #EBF1F5;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
    border-left: 1px solid #E2E8F0;
    white-space: nowrap;
}

/* Checkbox */
.join-today-form .form-check-group {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.join-today-form .custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #333;
}

.join-today-form .custom-checkbox a {
    color: var(--PrimaryColor);
    text-decoration: underline;
}

.join-today-form .custom-checkbox input {
    display: none;
}

.join-today-form .checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid #AAA;
    border-radius: 3px;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.join-today-form .custom-checkbox input:checked+.checkmark {
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}

.join-today-form .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.join-today-form .custom-checkbox input:checked+.checkmark:after {
    display: block;
}


.clearunited-leadership-section .circle-info-table-outer {
    overflow: auto
}

.circle-info-table-outer .reward-table {
    width: 100%
}

.circle-info-table-outer .circle-info-table {
    background: var(--PrimaryColor);
    border-radius: 20px;
    padding: 20px 20px 20px 0;
    min-width: 930px
}

.circle-info-table-outer .leader-img img {
    width: 70px;
    height: 70px;
    margin: auto;
}

.circle-info-table-outer .leader-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .2s;
    -webkit-transition: .2s
}

.circle-info-table-outer .leader-name {
    margin-top: 12px
}

.circle-info-table-outer .leader-name h2 {
    font-size: 16px;
    color: #181818;

}

.circle-info-table-outer .reward-table tr th {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    padding: 16px 5px;
    text-align: center;
    border: 1px solid #927b99;
    border-collapse: collapse
}

.circle-info-table-outer .reward-table tr th.bg-lite {
    background-color: transparent;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    border-color: var(--PrimaryColor);
    min-width: 212px;
    text-align: right;
    padding-right: 33px
}

.circle-info-table-outer .reward-table tr td {
    font-size: 16px;
    color: #363636;
    font-weight: 600;
    text-align: center;
    border: 1px solid #dad2d2;
    border-collapse: collapse;
    background: #fff
}

.circle-info-table-outer .reward-table tr td:last-child {
    border-right-color: #927b99
}

.circle-info-table-outer .reward-table thead th {
    background: #f9e2ff;
    border-color: transparent #dad2d2 #dad2d2
}

.circle-info-table-outer .reward-table thead th:last-child {
    border-right-color: var(--PrimaryColor)
}

.circle-info-table-outer .reward-table tbody tr th {
    font-size: 16px;
    font-weight: 400;
    padding: 15px 33px 15px 10px;
    text-align: right;
    border-color: #917399
}

.circle-info-table-outer .reward-table tr.highlight-tr td {
    background: #fdf6ff
}

.circle-info-table-outer .reward-table td.black-color {
    color: #000
}

.circle-info-table-outer .reward-table .bold {
    font-weight: 700
}

.circle-info-table-outer .l-b-radius {
    border-radius: 0 0 0 20px;
    border-left-color: var(--PrimaryColor)
}

.circle-info-table-outer .r-b-radius {
    border-radius: 0 0 20px;
    border-right-color: var(--PrimaryColor)
}

.circle-info-table-outer .l-radius {
    border-radius: 20px 0 0
}

.circle-info-table-outer .r-radius {
    border-radius: 0 20px 0 0
}

.circle-info-table-outer .border-btm-none td,
.circle-info-table-outer .border-btm-none th {
    border-bottom: none
}

.circle-info-table-outer .border-btm-none th {
    border-right: none
}

.circle-info-table-outer .become-a-member-btn {
    text-align: right;
    margin-top: 20px
}

.circle-info-table-outer .become-a-member-btn .btn {
    text-transform: uppercase
}

.clearunited-leadership-section .four-pools-table-txt {
    margin-top: 2rem;
}

.share-photos .hyperlinks-icon a {
    display: inline-block;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    text-align: center;
    transition: .2s;
    -webkit-transition: .2s;
    padding: 0.5rem;
}

.share-photos .winner-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
}


.video-story .video-box {
    min-height: 336px;
    position: relative;
   display: flex;
    overflow: hidden;
    border-radius: 20px;
    border: 10px solid #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
}

.video-story .video-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


.video-story .video-box span.icon-logo {
    position: absolute;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    right: 10px;
    top: 10px;
    display: -webkit-flex;
}

.video-box .youtobe-icon a {
    color: #171717;
    font-size: 20px;
    border-radius: 100px;
    display: block;
}

.video-box a {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    width: 50px;
    height: 50px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 100px;
    line-height: 52px;
    text-align: center;
}

.shareYou-section .shareYou-img {
    margin-top: 2rem;
    margin: auto;
}


.shareYou-section .shareYou-img img {
    box-shadow: 2px 2px 20px rgba(0, 0, 0, .1);
    border-radius: 10px;
    margin: auto;
}


.share-storage-section {
    position: relative;
    background: url('../images/rewards-share-storage.jpg') top center/cover no-repeat;
    min-height: 714px;

}

.share-storage-section .Share-storage-img img {
    margin: 2rem auto 0;
}

.product-box {
    background: #f6f6f6;
    height: 100%;
    padding: 1rem;

}

.product-box .product-images {
    height: 175px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
}

.product-box .product-images img {
    transition: .3s;
    -webkit-transition: .3s;
    max-height: 168px;
}

.product-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--PrimaryColor);
    margin-top: 30px;
}

.product-box:hover .product-images img {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.clear-rewards-all {
    background: linear-gradient(to left, #fff 50%, #f6f6f6 50%);
}

.inner-store .store-event {
    height: 100%;
    padding: 1rem;
    text-align: center;
    background: #fafafa;
    display: block;
}

.inner-store .store-event figure {
    width: 148px;
    height: 148px;
    border-radius: 100px;
    overflow: hidden;
    margin: auto auto 25px;
}

.inner-store .store-event h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #171717;
    margin-bottom: 5px;
}

.inner-store .store-event p {
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
}

.phone220-section {
    background: #3f2d44
}

.phone-quick-specs ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.phone-quick-specs li {
    width: 25%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
}

.phone-quick-specs li .quick-specs-icon {
    width: 100%;
}

.phone-quick-specs li .quick-specs-icon img {
    margin: 0 auto 1rem
}

.phone-quick-specs li p {
    text-align: center;
}

.phone-quick-specs li:nth-child(4n) {
    border-right: none;
}

.phone-quick-specs li:nth-child(n+5) {
    border-bottom: none;
}

.s-17MoreSpace-section {
    background: url(../images/more-space-bg.jpg) 0 0/cover;
}

.same-ul ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.same-ul ul.full-wid {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;

}

.same-ul ul.full-wid li {
    text-align: left;
}

.same-ul ul li {

    text-align: center;
    padding: 0.5rem;
    flex: 0 0 auto;
    width: auto;
}

.same-ul ul li h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--PrimaryColor);
}

.same-ul ul li p {

    color: #171717;
}

.s17-super-night-mode {
    background: url(../images/s17-super-night-mode-img.jpg)no-repeat top center/cover;

}

.s17-super-night-mode .same-ul ul {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
}

.s17-super-night-mode .same-ul ul li {
    width: 100%;
    text-align: left;
}

.same-ul.color-white ul li h4,
.same-ul.color-white ul li p {
    color: #fff;
}

.s17-selfie-camera-section {
    background: url(../images/s17-selfie-camera-img.jpg) left center no-repeat;
    background-size: 50%;

}

.selfie-camera-ul .progress-bar-div {
    height: 4px;
    background: #d5d5d5;
    position: relative;
    display: block;
    width: 100%;
}

.selfie-camera-ul .progress-bar-div .progress-bar-custom {
    height: 100%;
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, rgba(136, 76, 152, 1) 0, rgba(106, 78, 113, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#884c98', endColorstr='#6a4e71', GradientType=1);
}

.selfie-camera-ul .progress-bar-div span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 9px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: linear-gradient(90deg, rgba(136, 76, 152, 1) 0, rgba(106, 78, 113, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#884c98', endColorstr='#6a4e71', GradientType=1);
}

.selfie-camera-ul ul {
    margin-top: 25px;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.selfie-camera-ul ul li {
    text-align: center;
    display: inline-block;
}

.selfie-camera-ul ul li div {
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #171717;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selfie-camera-ul ul li p {
    padding-top: 0.5rem;
}

.selfie-camera-ul ul li.active div {
    background: linear-gradient(90deg, rgba(136, 76, 152, 1) 0, rgba(106, 78, 113, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#884c98', endColorstr='#6a4e71', GradientType=1);
    border-color: var(--PrimaryColor);
}

.selfie-camera-ul ul li.active div img {
    filter: invert(1);
}


.s17-duble-unlock-section {
    background: #000 url(../images/s17-unlock-img.jpg) top center no-repeat;
    min-height: 1000px;
}

.s17-battery-info-section {
    background: url(../images/s17-battery-back-layer.png) center center no-repeat;
    background-size: 100%;

}

.bgdark {
    background: #000;
}

.x6-Borderless-section {
    background: linear-gradient(90deg, rgba(242, 225, 246, 1) 1%, rgba(253, 251, 253, 1) 45%, rgba(255, 255, 255, 1) 51%, rgba(252, 248, 252, 1) 62%, rgba(250, 244, 251, 1) 67%, rgba(242, 225, 246, 1) 100%);
}

.series-620-battery-info h3 {
    font-size: 3rem;
    background: -webkit-linear-gradient(#884c98, #694e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.x6-dual-rear-section {
    background: url(../images/x6-dual-rear-img.jpg)no-repeat center center/cover;
}

.clearphone-420-angle-section {
    background: url(../images/wide-angle-img.jpg) bottom center no-repeat;
    min-height: 1190px;
}

.wide-angle-bx {
    max-width: 788px;
    height: 523px;
    border: 8px solid #635d46;
    margin: 0 auto;
}

.wide-angle-bx p {
    margin-top: 156px;
    text-align: right;
    font-size: 14px;
    text-transform: uppercase;
    color: #a7a7a7;
    margin-right: -263px;
    font-weight: 700;
}

.wide-angle-bx p span+span {
    margin-left: 214px;
}



.x6-in-display-fingerprint-section {
    background: url(../images/x6-in-display-fingerprint-img.jpg) top center no-repeat #000;
    padding: 150px 0 615px;
}

.performance-view h4 {
    font-size: 1.1rem;
    color: var(--PrimaryColor);
    font-weight: 500;
    padding-bottom: 25px
}

.performance-view h4 span {
    margin-left: 34px;
    font-size: 14px
}

.performance-view h4 strong {
    font-weight: 600;
    font-size: 45px
}

.performance-view ul li {
    display: block
}

.performance-view ul li h4 {
    font-size: 1.1rem;
    font-weight: 500;
    padding-bottom: 15px
}

.performance-view ul li+li {
    margin-top: 25px
}

.performance-view ul li .progress-bar {
    display: inline-block;
    border-radius: 5px;
    height: 6px
}

.performance-view ul li:nth-child(1) h4,
.performance-view ul li:nth-child(1) h5 {
    color: var(--PrimaryColor)
}

.performance-view ul li:nth-child(1) .progress-bar {
    background: linear-gradient(88deg, rgba(0, 0, 0, 1) 0, rgba(127, 71, 142, 1) 32%, rgba(105, 78, 112, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='var(--PrimaryColor)', GradientType=1)
}

.performance-view ul li h5 {
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px
}

.x6-performance-section {
    background: url(../images/x6-performance-img.jpg) top center / cover no-repeat;
}


.exceed-vision-section {
    background: url(../images/clearphone-420-exeed-vison-img.png) left center/45vw no-repeat #f5e8f8;
    min-height: 40vw;
}

.clearphone-420-camera-section {
    background: url(../images/clearphone-420-camera-img.png) right bottom/40vw no-repeat #000;

}

.clearphone-420-gif-section {
    background: linear-gradient(to bottom, #f5e9f8 80%, #fff 20%);

}

.clearphone-420-performance-bx h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    color: var(--WhiteColor)
}

.clearphone-420-performance-bx p {

    color: var(--WhiteColor)
}

.performance-view ul li:nth-child(2) .progress-bar {
    background: linear-gradient(87deg, rgba(0, 0, 0, .8) 0, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#ffffff', GradientType=1);
}

.clearphone-420-performance-section {
    background: url(../images/helio-p60-bg.jpg)no-repeat right center/cover;
}

.hawaiian-banner-wrapper {
    background: url(../images/hawaiian-left-img.png) left center no-repeat #dbeff8;
    padding: 11rem 0;
    background-size: 15vw;
    background-position: left -7vw center;
}

.hawaiian-banner-wrapper .ClearPhoneHeading h2 {
    font-size: 3.1vw;
    margin-bottom: 20px;
}

.hawaiian-banner-wrapper .ClearPhoneHeading h2 .light-title {
    color: #a1a1a1;
    font-size: 14px;
    letter-spacing: 6px;
    display: block;
    margin: 5px 0;
    font-weight: 500;
    text-transform: uppercase;
}

.hawaiian-banner-wrapper .ClearPhoneHeading h3 {
    font-size: 1.4vw;
    color: #232323;
    text-transform: capitalize;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: normal;
}

.hawaiian-banner-wrapper .ClearPhoneHeading h3 .light-title {
    display: block;
    font-size: 2.4vw;
}

.hawaiian-group-btn-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    gap: 1rem;
}

.hawaiian-group-btn-list a {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
    background: #005b8c;
    border: 1px solid #005b8c;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-align: left;
    margin: 0;
}

.hawaiian-group-btn-list a .btn-icons {
    width: 1.8rem;
    text-align: center;
}

.hawaiian-group-btn-list a .text-box {
    text-transform: capitalize;
}

.hawaiian-group-btn-list a .text-box span {
    display: block;
    font-weight: 300;
    font-size: 0.8rem;
    line-height: normal;
    text-transform: uppercase;
}

.hawai-morespace-section {
    background: url('../images/hawai-more-space-img.jpg') center top /cover;
    min-height: 950px;

}

.hawai-portrait-section {
    background: #dbeff8;
}

.hawai-power-performance {
    background: url(../images/power-perfomance-bg.jpg)no-repeat center top/cover;
    padding-top: 10rem;

}

.video-img-box {
    position: relative;
}

.video-img-box .video-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #005b8c;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    line-height: 47px;
    color: #fff;
    font-size: 16px;
    -webkit-animation: 1.75s infinite pulse2;
    animation: 1.75s infinite pulse2;
}

.ClearEARS-banner {
    padding: 6rem 0;
    background: #f5f5f5;
    position: relative;
}

.ClearEARS-banner h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--BlackColor);
}

.features-ul li {
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    position: relative;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
}

.features-ul li .check-icon {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0.4rem;
}

.features-ul li .check-icon svg {
    width: 1rem;
}

.features-ul.right-view li {
    text-align: right;
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
}

.features-ul.right-view .check-icon {
    left: unset;
    right: 0;
}

.wireless-charge h4 {
    color: var(--BlackColor);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2rem;
}

.specs-section .wireless-charge p {
    color: #a3a3a3;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1rem;
}

.os-video-section {
    position: relative;
    min-height: 600px;
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.os-video-section .img-bx {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;

}

.os-video-section .img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.os-video-section .img-bx:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .8);
}

.os-video-section .same-heading {
    position: relative;
    z-index: 1;
}

.clearos-mobile-logo {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 12px;
    background: #fff;
    text-align: center;

    box-shadow: 0 0 20px 8px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 0 20px 8px rgba(0, 0, 0, .1);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
}

.inner-banner {
    padding: 5rem 0;
    position: relative;
}

.inner-banner h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--BlackColor);
}

.inner-banner .free-dots {
    width: 218px;
    height: 218px;
    border-radius: 50%;
    background: var(--PrimaryColor);
    position: absolute;
    pointer-events: none;
    box-shadow: 0 0 0 0 rgba(105, 78, 112, .7), 150px -150px 0 -80px var(--PrimaryColor);
    left: -170px;
    top: 30%;
    animation: 1.75s cubic-bezier(.66, 0, 0, 1) infinite pulse;
    -webkit-animation: 1.75s cubic-bezier(.66, 0, 0, 1) infinite pulse;
}

.inner-banner .section-bottom-btn {
    margin-top: 1.5rem;
}



.play-btn {

    background: var(--PrimaryColor);
    border: solid 1px var(--PrimaryColor);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    line-height: 3.5rem;
    color: #fff;
    font-size: 1rem;
    -webkit-animation: 1.75s infinite pulse2;
    animation: 1.75s infinite pulse2;
}

.clearos-mobile-control-section .credit-txt {
    margin-top: 2rem;
}

.clearid-protection-section {
    background: url(../images/clearid-data-protection-bg.webp)no-repeat center top/cover;
}

.checkout-hacks-bx-outer .input-group {
    border-radius: 50px;
    background: var(--WhiteColor);
    padding: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    align-items: center;
}

.checkout-hacks-bx-outer .input-group .form-control {
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    height: auto;
    font-size: 0.9rem;
}

.checkout-hacks-bx-outer .input-group .input-group-prepend {
    border: none;
    background: transparent;
    padding: 0;
    width: 1rem;
    margin-right: 0.5rem;
}

.checkout-hacks-bx-outer .input-group .input-group-text {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--PrimaryColor);

}

.checkout-hacks-bx-outer .privacy-info {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #424242;
    font-weight: 600;
    margin-top: 2rem;
    text-align: center;
}

.checkout-hacks-bx-outer .privacy-info svg {
    width: 1rem;
}

.clearid-identity-theft-section {
    background: url(../images/clearid-identity-theft-img.png)no-repeat center right/cover;
    background-size: 50%;
}


.clearid-forall-section .clearid-mobile-slider {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

.clearid-forall-section .slider-mobile-img {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    left: 0;
    top: 0;
}

.clearid-forall-section .custom-owl .item {
    background: #ffffff;
    border-radius: 0.75rem;
    text-align: center;
    overflow: hidden;
}

.clearid-forall-section .custom-owl .item img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 40px;

}



.stay-secure-section .why-data-colum {
    background: #fff;
    padding: 1rem 3rem;
    display: flex;
    align-items: center;
    align-content: center;
    flex: 0 0 100%;
    flex-flow: wrap;
    border-radius: 50px;
    text-align: left;
    box-shadow: 0 0 10px 6px rgba(0, 0, 0, .05);
    position: relative;
    margin: 1rem 0;
}

.stay-secure-section .why-data-icon {
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    background: var(--PrimaryColor);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    padding: 0.8rem;
}

.stay-secure-section .why-data-icon img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1)
}

.stay-secure-section .why-data-colum h3 {
    color: var(--PrimaryColor);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stay-secure-section .why-data-colum p {
    color: var(--BlackColor);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.stay-secure-section .why-data-mid-img {
    margin: 0 -90px 0;
    position: relative;
    z-index: 1
}

.stay-secure-section .why-data-align-right {

    justify-content: flex-end;
    text-align: right
}

.stay-secure-section .why-data-align-right .why-data-icon {
    left: auto;
    right: -15px
}



.resources-bx {
    text-align: center;
    padding: 0 1.5rem;
}

.resources-bx .resources-icon {
    width: 100%;
    max-width: 3rem;
    margin: auto;

}

.resources-bx h3 {
    font-size: 1rem;
    color: #202020;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    line-height: 1.5;
}

.resources-bx p {
    width: 100%;
    max-width: 60%;
    margin: auto;
}

.video-model-bx {
    position: relative;

}

.video-model-bx img {
    width: 100%;
    border-radius: 10px;
}

.video-model-bx .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: var(--PrimaryColor);
    width: 3rem;
    height: 3rem;
    display: flex;
    border: solid 1px transparent;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    padding: 0.8rem;
    color: #fff;
    font-size: 1rem;
    -webkit-animation: 1.75s infinite pulse2;
    animation: 1.75s infinite pulse2;
}

.clearweb-speed-section .clearweb-speed-img {
    background: #f6f6f6;
    padding: 1.5rem;
    margin: 2rem 0;
}

.clearweb-do-white-box {
    background: var(--WhiteColor);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.clearweb-work-white-box {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #fff;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.clearweb-work-white-box:before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--PrimaryColor);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: -25px;
}

.clearweb-work-white-box:after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--PrimaryColor);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: -40px;
}

.custom-row div[class*=col-] {
    padding-left: 20px;
    padding-right: 20px;
}

.clearweb-work-list-line {
    background-color: #694e70;
    width: 640px;
    height: 2px;
    margin: 46px auto 41px;
    transform: translateX(102px);
    -webkit-transform: translateX(102px);
}

.clearweb-work-white-box.up-line:before {
    top: -47px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.clearweb-work-white-box.up-line:after {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 2px;
    height: 40px;
}

.clearweb-work-white-box.left-line:before {
    right: inherit;
    left: -25px;
}

.clearweb-work-white-box.left-line:after {
    right: inherit;
    left: -40px;
}

.clearweb-work-white-box.down-line:after {
    width: 2px;
    height: 51px;
    top: inherit;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: -51px;
}

.clearweb-work-white-box.down-line:before {
    top: inherit;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    bottom: -51px;
}

.phone-quick-specs li .quick-specs-icon {
    text-align: center;
}

.amazing-innovation-box h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--BlackColor);
    padding-bottom: 1rem;

}

.amazing-innovation-box h5 {
    font-size: 1rem;
    color: var(--BlackColor);
    font-weight: 500;


}


.clear-scan-vitals-icon .icon-bx {
    width: 100%;
    max-width: 3rem;
    margin: 0 auto 2rem;
}

.clear-scan-vitals-icon h4 {
    font-size: 1rem;
    color: #000;
    font-weight: 500;
}


.clearmed-medication-bx {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.clearmed-medication-icon {
    width: 63px;
    height: 63px;
    background: url('../images/clearmed-medication-icon-sprite.png') no-repeat;
    display: block;
    margin: 0 auto 0.5rem;
}

.clearmed-medication-bx ul li {
    display: inline-block;
    vertical-align: top;
    position: relative;
    z-index: 1;
    text-align: center;
}

.clearmed-medication-bx ul li p {
    margin-bottom: 0;
}

.medication-icon1 {
    background-position: 0 0;
}

.medication-icon2 {
    background-position: 0 -57px;
}

.medication-icon3 {
    background-position: 0 -131px;
    height: 79px;
}

.medication-icon4 {
    background-position: 0 -223px;
}

.medication-icon5 {
    background-position: 0 -304px;
}

.medication-icon6 {
    background-position: 0 -382px;
}

.medication-icon7 {
    background-position: 0 -464px;
}

.medication-icon8 {
    background-position: 0 -537px;
}

.clearmed-medication-bx ul li:nth-child(1) {
    transform: translate(30px, 343px);
    -webkit-transform: translate(30px, 343px)
}

.clearmed-medication-bx ul li:nth-child(2) {
    transform: translate(30px, 190px);
    -webkit-transform: translate(30px, 190px)
}

.clearmed-medication-bx ul li:nth-child(3) {
    transform: translateY(50px);
    -webkit-transform: translateY(50px)
}

.clearmed-medication-bx ul li:nth-child(5) {
    transform: translate(30px, 20px);
    -webkit-transform: translate(30px, 20px)
}

.clearmed-medication-bx ul li:nth-child(6) {
    transform: translate(30px, 70px);
    -webkit-transform: translate(30px, 70px)
}

.clearmed-medication-bx ul li:nth-child(7) {
    transform: translate(30px, 195px);
    -webkit-transform: translate(30px, 195px)
}

.clearmed-medication-bx ul li:nth-child(8) {
    transform: translate(-30px, 343px);
    -webkit-transform: translate(-30px, 343px)
}

.clearmed-condition-section .clearmed-medication-img {
    width: 100%;
    max-width: 16rem;
}

.includes-txt {
    padding: 12px 20px;
    border: 1px solid #cbc1cd;
    border-left: 4px solid var(--PrimaryColor);
    border-radius: 5px;
}

.includes-txt p {
    margin-bottom: 0;
}

.includes-txt+.includes-txt {
    margin-top: 8px;
}

.order-last .includes-txt {
    border-left: 1px solid #cbc1cd;
    border-right: 4px solid var(--PrimaryColor);
}

.clearmed-good-bx {
    background: var(--PrimaryColor);
    border-radius: 5px;
    color: #fff;
    text-align: center;
    padding: 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.custom-faq {
    margin-bottom: 2rem;
}

.custom-faq .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    background: transparent;
}

.custom-faq .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #000;
    background: transparent;
    box-shadow: none;
}

.custom-faq .accordion-body {
    padding: 1rem 0;
    color: #545454;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    border-top: 1px solid #e5e5e5;
}


/* Hover effect */
.custom-faq .accordion-button:hover {
    color: var(--BlackColor);
}

.launcher-section .home-launcher .img-box {
    margin-bottom: 5rem;
}

.launcher-section .home-launcher .img-box img {
    margin-top: -5rem;
}

.launcher-section .top-same-heading {
    margin-bottom: 10rem;
}

.features-section .feature-item {
    text-align: center;
}

.features-section .feature-item p {
    margin-top: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--BlackColor);
}

.features-section .feature-item .icon-box {
    width: 3rem;
    height: 3rem;
    background: var(--PrimaryColor);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;

}

.features-section .feature-item .icon-box svg {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--WhiteColor);
}


.clearsignal-banner .img-box:after {
    content: "";
    position: absolute;
    width: 30rem;
    height: 30rem;
    background: var(--PrimaryColor);
    border-radius: 50%;
    top: -49%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.clearsignal-banner .img-box img {
    position: relative;
    z-index: 1;
    ;
}

.clearsignal-get-section .img-bx img {
    mix-blend-mode: darken;
    margin-bottom: 1rem;
}

.mix-blend-mode {
    mix-blend-mode: darken;
}

.clearapps-games-banner-section {
    padding: 5rem 0;
    background: linear-gradient(90deg, rgba(152, 201, 241, 1) 0, rgba(142, 100, 153, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#98c9f1', endColorstr='#8e6499', GradientType=1);
}

.same-icon-ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.same-icon-ul .iconBx {
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    margin: 0 auto 1rem;
    text-align: center;
}

.same-subtitle {
    font-size: 1rem;
    color: #545454;
    margin-bottom: 1rem;
}

.divider {
    width: 3rem;
    height: 0.1875rem;
    background-color: var(--PrimaryColor);
    margin-bottom: 1.5rem;
}


.Integrations-flex .company-box {
    border: 1px solid #cfcfcf;
    border-radius: 5px;
    overflow: hidden;

}

.Integrations-flex .company-box .company-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #db4437
}

.Integrations-flex .company-box .company-header img {
    max-height: 1.2rem;
}

.Integrations-flex .company-box svg {
    width: 1rem;
    color: var(--WhiteColor);
}

.Integrations-flex .company-box .company-body {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff
}

.Integrations-flex .company-box .company-body h4 {
    font-size: 14px;
    line-height: 17px;
    font-weight: 600;
    color: #694e70
}

.Integrations-flex .company-box .company-body h5 {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #343434
}

.Integrations-flex .company-box .user-img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px
}

.Integrations-flex .company-box .company-body .company-profile-name span img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.Integrations-flex .company-box .company-body .company-profile-name div {
    display: inline-block;
    vertical-align: middle
}

.Integrations-flex .company-box.microsoft .company-header {
    background-color: #0e0e0e
}

.Integrations-flex .company-box.dropbox .company-header {
    background-color: #0060d9
}

.Integrations-flex .company-box.box .company-header {
    background-color: #db4437
}

.bg-site {
    background-color: #694e70
}

.clearEmail-plan-box {
    background: #e6e6e6;
    border-radius: 20px;
    overflow: hidden
}

.clearEmail-plan-box-header {
    height: 206px;
    position: relative;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    flex-flow: column
}

.clearEmail-plan-box-header h5 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 49px;
    color: #6b6868;
    margin: 0;
    padding: 1rem 0 0
}

.clearEmail-plan-box-header h5 sup {
    font-size: 1.4rem
}

.clearEmail-plan-box-body {
    padding: 1rem
}

.clearEmail-plan-box-body ul li {
    position: relative;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    color: #969696;
    padding: 0.5rem 0rem 0.5rem 2rem;
    text-align: left
}

.clearEmail-plan-box-body ul li strong {
    color: #5f5f5f;
    font-weight: 500
}

.clearEmail-plan-box-body ul {
    min-height: 286px
}

.clearEmail-plan-box-body ul li>span {
    position: absolute;
    top: 8px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, .2);
    color: #fff;
    font-size: 1rem;
    padding: 0.2rem;
}



.clearEmail-plan-box-body .d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;

}

.clearEmail-plan-box-body .d-flex div {
    font-weight: 600;
    font-size: 1rem;
    color: #3c3c3c
}

.clearEmail-plan-box-body .d-flex .happy {
    display: none
}

.clearEmail-plan-box.active {
    background: var(--PrimaryColor);
}

.clearEmail-plan-box.active * {
    color: var(--WhiteColor) !important;
}

.clearEmail-plan-box.active .happy {
    display: block
}

.clearEmail-plan-box.active .sad {
    display: none
}


.project-clearone-table-section-mobile {
    position: relative;
}

.project-clearone-table-section-mobile .project-table-row {
    display: flex;
    flex-wrap: wrap;
    border: solid 1px #f6f6f6;
}

.project-clearone-table-section-mobile .project-table-cell {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}

.project-clearone-table-section-mobile :is(.ClearONE-Workspace, .ClearONE-Email, .ClearONE-Teams) svg {
    color: var(--PrimaryColor);
}

.project-clearone-table-section-mobile .project-table-cell-box {
    padding: 1rem;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    color: var(--BlackColor);
    height: 100%;
    position: relative;
}

.project-clearone-table-section-mobile .project-table-cell-box.text-right {
    padding-right: 2rem;
    text-align: end;
}

.clear-Workspace .project-table-cell-header.ClearONE-Workspace {
    background: var(--PrimaryColor);
    color: #fff;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    position: relative;
    z-index: 2;
}

.project-table-row .project-table-cell-header {
    background: #dedede;
    border-radius: 10px 10px 0 0;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--BlackColor);
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.project-table-cell-box {
    padding: 15px;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    color: #000;
    height: 100%;
    position: relative;
}



.project-table-cell-box .bar {
    width: 25px;
    height: 3px;
    display: inline-block;
    background: #cdbbbb;
}

.project-table-cell .pese_div span {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--PrimaryColor);
}


.subscribe-bg {
    background: url(../images/all-services-section-bg.webp)no-repeat center top/cover;
}

.icon-with-title {
    height: 100%;
    border: 0.0625rem solid #CFCFCF;
    border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    background-color: #ffffff;
}

.icon-with-title .icon-bx {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background-color: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.icon-with-title .icon-bx img {
    max-width: 2rem;

}

.icon-with-title h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--PrimaryColor);
}

.icon-with-title p {
    margin-bottom: 0;
}

.clear-full-mobile-section {
    background: url(../images/clear-full-mobile-img.jpg) no-repeat center top/cover;
}


.video-modal-dialog .modal-content {
    border: 7px solid #fff;
}

.video-modal-dialog video {
    width: 100%;
    height: 100%;
    display: block;
}

.video-modal-dialog .btn-close {
    position: absolute;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #000;
    z-index: 1;
    opacity: 1;
    text-align: center;
    right: -18px;
    top: -18px;
    transition: .2s;
    -webkit-transition: .2s;

}





.principles-section .icon-with-title .icon-bx {
    width: 3rem;
    height: 3rem;
    background: url('../images/purpose-icon-sprite.png') no-repeat;
    background-size: cover;

}




.principles-section .icon-with-title .icon-bx.principles-icon-bx2 {
    background-position: -75px center;
}

.principles-section .icon-with-title .icon-bx.principles-icon-bx5 {
    background-position: -332px center;
}

.principles-section .icon-with-title .icon-bx.principles-icon-bx3 {
    background-position: -157px center;
}

.principles-section .icon-with-title .icon-bx.principles-icon-bx4 {
    background-position: -242px center;
}

.principles-section .icon-with-title .icon-bx.principles-icon-bx1 {
    background-position: 4px center;
}

.why-clearphone-sub-section .icon-with-title .icon-bx {
    background: var(--PrimaryColor);
}

.clear-phone-section .CancellationFee svg,
.subsciption-compare svg {
    width: 100%;
    height: auto;
}



.clearid-installation-box {
    position: relative;

}

.clearid-installation-box {
    position: relative;
    margin-top: 170px
}

.clearid-installation-box:after {
    content: "";
    position: absolute;
    width: 1px;
    background: #a8a8a8;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.clearid-installation-img {
    width: 711.35px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.clearid-installation-img:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #694e70;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.clearid-installation-img .short-icon {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #694e70;
    left: 50%;
    bottom: -75px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.clearid-installation-img+.clearid-installation-img {
    margin-top: 150px
}

.clearid-installation-img+.clearid-installation-img:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #694e70;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%)
}

.clearid-installation-text {
    position: absolute;
    top: -77px;
    background: #c4c4c4;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    border-radius: 10px;
    padding: 25px;
    left: 22%;
    width: 320px
}

.clearid-installation-text:after {
    content: "";
    position: absolute;
    background: url(clearid-installation-icon.eb78a870a5043e3cca2c.svg) top center no-repeat;
    width: 23.72px;
    height: 11.37px;
    left: -6px;
    bottom: 0
}

.clearid-installation-text span {
    display: inline-block;
    width: 45px;
    height: 45px;
    border-radius: 100px;
    color: #fff;
    background: #404040;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    top: -22px;
    left: -22px;
    position: absolute
}

.clearid-installation-text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
    text-align: center
}

.clearid-installation-text div {
    border-top: 1px solid #cfcfcf;
    padding-top: 25px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #000
}

.clearid-installation-text.arrow:after {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 26px solid #c4c4c4;
    border-bottom: 15px solid transparent;
    background: 0 0;
    top: -26px;
    left: 110px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.teton-telephoto-container .teton-telephoto-img img {
    opacity: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.teton-telephoto-container .teton-telephoto-img .telephoto-10x,
.teton-telephoto-container .teton-telephoto-img .telephoto-3x {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.teton-telephoto-container .teton-telephoto-img .telephoto-1x.active {
    opacity: 1 !important
}

.teton-telephoto-container .teton-telephoto-img .telephoto-10x.active,
.teton-telephoto-container .teton-telephoto-img .telephoto-3x.active {
    opacity: 1 !important;
    -webkit-transform-origin: center;
    transform-origin: center
}

.clearid-installation-text.installation-2 {
    top: 20%;
    left: inherit;
    right: -170px
}

.clearid-installation-text.installation-3 {
    left: -90px;
    right: inherit;
    top: 23%
}

.clearid-installation-text.installation-4 {
    left: inherit;
    right: -11%;
    top: 34%
}

.clearid-installation-text.installation-4a {
    left: inherit;
    right: 2%;
    top: 33%
}

.clearid-installation-text.installation-4a::after {
    top: 50%;
    left: -22px;
    transform: rotate(357deg);
    -webkit-transform: rotate(357deg)
}

.clearid-installation-text.installation-5 {
    left: inherit;
    right: 37%;
    top: 22%
}

.clearid-installation-text.installation-5:after {
    top: 50%;
    right: -20px;
    left: inherit;
    transform: rotate(180deg) translateY(-50%);
    -webkit-transform: rotate(180deg) translateY(-50%)
}

.clearid-installation-img h5 {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
    color: #000;
    max-width: 600;
    background: #f4f4f4;
    margin: 25px auto 0
}

.phone-installation:after {
    display: none;
}