﻿/* =========================================================
   SKYSEVEN ENTERPRISES
   PREMIUM CORPORATE / MLM WEBSITE
========================================================= */

:root {

    --ss-navy: #07111f;
    --ss-navy-2: #0b1b30;

    --ss-blue: #1769e0;
    --ss-blue-dark: #0e4fb4;

    --ss-gold: #dcae45;

    --ss-white: #ffffff;
    --ss-text: #172235;
    --ss-muted: #687386;

    --ss-border: rgba(255,255,255,.12);

    --ss-container: 1240px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        "DM Sans",
        sans-serif;

    color: var(--ss-text);

    background: #ffffff;

    overflow-x: hidden;

}


body.ss-menu-open {
    overflow: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


button {
    font-family: inherit;
}


/* =========================================================
   SKYSEVEN HEADER
========================================================= */

.ss-header {

    position: sticky;
    top: 0;
    left: 0;

    width: 100%;
    height: 95px;

    z-index: 99999;

    background: var(--ss-navy);

    border-bottom: 1px solid rgba(255,255,255,.08);

    isolation: isolate;
}


/* =========================================================
   HEADER INNER
========================================================= */

.ss-header-inner {

    position: relative;

    width: min(94%, var(--ss-container));

    margin: 0 auto;

    display: flex;

    align-items: center;

    gap: 20px;

    z-index: 5;
}


/* =========================================================
   LOGO AREA
   MASK + LOGO
========================================================= */

.ss-logo {

    position: relative;

    width: 245px;
    height: 95px;

    flex: 0 0 245px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    overflow: visible;

    z-index: 20;
}


/* =========================================================
   WHITE MASK
========================================================= */
/* =========================================================
   WHITE LOGO BACKGROUND / CLIP SHAPE
========================================================= */

.ss-logo .logo-bg {

    position: absolute;

    top: 0;
    left: -45px;

    width: 350px;
    height: 95px;

    background: #ffffff;

    z-index: 1;

    pointer-events: none;

    clip-path: polygon(
        0% 0%,

        70% 0%,
        75% 0.5%,
        79% 1.5%,
        82% 3%,
        85% 6%,
        87.5% 10%,
        89.5% 15%,
        91% 21%,
        92.5% 28%,
        94% 36%,
        95.5% 45%,
        97% 54%,
        98% 63%,
        98.5% 70%,
        98% 76%,
        96.5% 82%,
        94% 87%,
        90.5% 91%,
        86% 94.5%,
        80% 97%,
        73% 99%,
        67% 100%,

        0% 100%
    );

}

@media (max-width: 1100px) {

    .ss-logo .logo-bg {

        left: -30px;

        width: 290px;
        height: 82px;

        clip-path: polygon(
            0 0,
            75% 0,
            82% 2%,
            87% 7%,
            91% 16%,
            94% 28%,
            97% 43%,
            99% 58%,
            100% 70%,
            97% 82%,
            92% 91%,
            85% 97%,
            76% 100%,
            0 100%
        );
    }
}


@media (max-width: 600px) {

    .ss-logo .logo-bg {

        left: -20px;

        width: 235px;
        height: 72px;

        clip-path: polygon(
            0 0,
            74% 0,
            81% 2%,
            86% 8%,
            90% 18%,
            93% 31%,
            96% 46%,
            98% 61%,
            100% 72%,
            97% 83%,
            91% 92%,
            83% 97%,
            73% 100%,
            0 100%
        );
    }
}


@media (max-width: 400px) {

    .ss-logo .logo-bg {

        left: -15px;

        width: 210px;
        height: 68px;
    }
}
/* =========================================================
   SKYSEVEN LOGO
   ALWAYS ABOVE MASK
========================================================= */

.ss-logo-image {

    position: relative;

    z-index: 3;

    width: 205px;
    height: auto;

    max-height: 72px;

    object-fit: contain;

    object-position: center;

    display: block;

    transition:
        transform .25s ease;
}


.ss-logo:hover .ss-logo-image {

    transform: scale(1.015);

}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.ss-navigation {

    height: 95px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0;

    margin-left: auto;

    z-index: 10;
}


.ss-nav-link {

    position: relative;

    height: 95px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding: 0 13px;

    border: 0;

    outline: 0;

    background: transparent;

    color: rgba(255,255,255,.78);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color .25s ease;
}


.ss-nav-link:hover,
.ss-nav-link.active {

    color: #ffffff;

}


/* ACTIVE LINE */

.ss-nav-link.active::after {

    content: "";

    position: absolute;

    left: 13px;
    right: 13px;

    bottom: 19px;

    height: 2px;

    border-radius: 20px;

    background: var(--ss-gold);

}


/* =========================================================
   DROPDOWN
========================================================= */

.ss-nav-dropdown {

    position: relative;

    height: 95px;

    display: flex;

    align-items: center;
}


.ss-dropdown-trigger i {

    font-size: 9px;

    transition:
        transform .25s ease;
}


.ss-nav-dropdown:hover
.ss-dropdown-trigger i {

    transform: rotate(180deg);

}


.ss-dropdown-menu {

    position: absolute;

    top: calc(100% - 3px);

    left: 50%;

    width: 245px;

    padding: 8px;

    transform:
        translate(-50%, 12px);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    background: #ffffff;

    border: 1px solid #e8edf3;

    border-radius: 10px;

    box-shadow:
        0 20px 45px rgba(7,17,31,.18);

    transition:
        opacity .22s ease,
        transform .22s ease,
        visibility .22s ease;

    z-index: 100;
}


.ss-nav-dropdown:hover
.ss-dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translate(-50%, 0);

}


.ss-dropdown-menu a {

    display: flex;

    align-items: center;

    min-height: 45px;

    padding: 10px 13px;

    color: var(--ss-text);

    font-size: 14px;

    font-weight: 500;

    text-decoration: none;

    border-radius: 7px;

    transition:
        background .2s ease,
        color .2s ease;

}


.ss-dropdown-menu a:hover {

    color: var(--ss-blue);

    background: #f3f7fc;

}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.ss-header-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    margin-left: 8px;

    z-index: 10;
}


.ss-login {

    min-height: 42px;

    padding: 0 10px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    color: rgba(255,255,255,.82);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease;
}


.ss-login:hover {

    color: #ffffff;

}


.ss-join {

    min-height: 42px;

    padding: 0 18px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 7px;

    color: #ffffff;

    background: var(--ss-blue);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.ss-join:hover {

    background: var(--ss-blue-dark);

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px rgba(23,105,224,.25);

}


.ss-join i {

    font-size: 10px;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.ss-menu-toggle {

    display: none;

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    margin-left: auto;

    padding: 0;

    border: 1px solid rgba(255,255,255,.16);

    border-radius: 8px;

    background: rgba(255,255,255,.04);

    cursor: pointer;

    z-index: 50;
}


.ss-menu-toggle span {

    width: 19px;

    height: 2px;

    display: block;

    background: #ffffff;

    border-radius: 10px;

    transition:
        transform .3s ease,
        opacity .25s ease;
}


.ss-menu-toggle.is-active
span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.ss-menu-toggle.is-active
span:nth-child(2) {

    opacity: 0;

}


.ss-menu-toggle.is-active
span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.ss-mobile-menu {

    display: none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .ss-header,
    .ss-header-inner {

        height: 82px;

    }


    .ss-navigation,
    .ss-header-actions {

        display: none;

    }


    .ss-logo {

        width: 220px;

        height: 82px;

        flex-basis: 220px;

    }


    .ss-logo .logo-bg {

        left: -25px;

        width: 285px;

        height: 84px;

    }


    .ss-logo-image {

        width: 185px;

        max-height: 64px;

    }


    .ss-menu-toggle {

        display: flex;

    }


    .ss-mobile-menu {

        position: fixed;

        top: 82px;

        left: 0;
        right: 0;
        bottom: 0;

        display: block;

        overflow-y: auto;

        background: var(--ss-navy);

        transform: translateX(100%);

        visibility: hidden;

        pointer-events: none;

        transition:
            transform .3s ease,
            visibility .3s ease;

        z-index: 9999;

    }


    .ss-mobile-menu.is-open {

        transform: translateX(0);

        visibility: visible;

        pointer-events: auto;

    }


    .ss-mobile-inner {

        width: min(calc(100% - 40px), 650px);

        margin: 0 auto;

        padding: 15px 0 40px;

    }


    .ss-mobile-inner > a,
    .ss-mobile-dropdown-btn {

        width: 100%;

        min-height: 56px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 0;

        border: 0;

        border-bottom:
            1px solid rgba(255,255,255,.09);

        background: transparent;

        color: #ffffff;

        font-size: 15px;

        font-weight: 600;

        text-decoration: none;

        text-align: left;

    }


    .ss-mobile-dropdown-btn {

        cursor: pointer;

    }


    .ss-mobile-dropdown-btn i {

        font-size: 10px;

        transition:
            transform .25s ease;

    }


    .ss-mobile-dropdown.is-open
    .ss-mobile-dropdown-btn i {

        transform: rotate(180deg);

    }


    .ss-mobile-submenu {

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transition:
            max-height .3s ease,
            opacity .25s ease;

    }


    .ss-mobile-dropdown.is-open
    .ss-mobile-submenu {

        max-height: 300px;

        opacity: 1;

    }


    .ss-mobile-submenu a {

        min-height: 47px;

        display: flex;

        align-items: center;

        padding: 0 15px;

        border-bottom:
            1px solid rgba(255,255,255,.05);

        color: rgba(255,255,255,.68);

        font-size: 14px;

        text-decoration: none;

    }


    .ss-mobile-actions {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 12px;

        margin-top: 24px;

    }


    .ss-mobile-login,
    .ss-mobile-join {

        min-height: 48px;

        display: flex !important;

        align-items: center;

        justify-content: center;

        border: 1px solid rgba(255,255,255,.14);

        border-radius: 8px;

        color: #ffffff;

        font-size: 14px;

        text-decoration: none;

    }


    .ss-mobile-join {

        background: var(--ss-blue);

        border-color: var(--ss-blue);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .ss-header,
    .ss-header-inner {

        height: 72px;

    }


    .ss-header-inner {

        width: calc(100% - 24px);

    }


    .ss-logo {

        width: 180px;

        height: 72px;

        flex-basis: 180px;

    }


    .ss-logo .logo-bg {

        left: -18px;

        width: 230px;

        height: 74px;

    }


    .ss-logo-image {

        width: 150px;

        max-height: 52px;

    }


    .ss-menu-toggle {

        width: 42px;

        height: 42px;

        flex-basis: 42px;

    }


    .ss-mobile-menu {

        top: 72px;

    }


    .ss-mobile-inner {

        width: calc(100% - 30px);

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .ss-header-inner {

        width: calc(100% - 18px);

    }


    .ss-logo {

        width: 160px;

        height: 68px;

        flex-basis: 160px;

    }


    .ss-logo .logo-bg {

        left: -15px;

        width: 205px;

        height: 70px;

    }


    .ss-logo-image {

        width: 135px;

        max-height: 48px;

    }


    .ss-mobile-inner {

        width: calc(100% - 24px);

    }


    .ss-mobile-actions {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ss-header *,
    .ss-header *::before,
    .ss-header *::after {

        transition: none !important;

        animation: none !important;

    }

}








/* =========================================================
   SKYSEVEN HERO — RESPONSIVE VERSION
========================================================= */

.sky-hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #071a2d 0%,
            #0b2944 55%,
            #123d5d 100%
        );

    color: #ffffff;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.sky-hero-container {
    width: min(1240px, calc(100% - 80px));
    min-height: 760px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);

    align-items: center;

    gap: 60px;
}


/* =========================================================
   CONTENT
========================================================= */

.sky-hero-content {
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 650px;
}


.sky-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 24px;

    color: #8cc8f5;

    font-size: 14px;
    line-height: 1.4;

    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}


.sky-hero-eyebrow::before {
    content: "";

    width: 34px;
    height: 2px;

    flex: 0 0 34px;

    background: #dcae45;
}


/* =========================================================
   TITLE
========================================================= */

.sky-hero-content h1 {
    margin: 0;

    max-width: 680px;

    font-family:
        "Manrope",
        "Segoe UI",
        Arial,
        sans-serif;

    font-size: clamp(48px, 5.2vw, 76px);

    line-height: 1.04;

    letter-spacing: -2.8px;

    font-weight: 800;

    color: #ffffff;
}


.sky-hero-content h1 span {
    display: inline;
    color: #69b9ed;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sky-hero-description {
    max-width: 610px;

    margin: 28px 0 0;

    color: rgba(255, 255, 255, .72);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BUTTONS
========================================================= */

.sky-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 32px;
}


.sky-hero-primary,
.sky-hero-secondary {
    min-height: 54px;

    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border-radius: 7px;

    font-size: 14px;
    line-height: 1;

    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}


.sky-hero-primary {
    background: #ffffff;
    color: #0b2944;
}


.sky-hero-primary:hover {
    transform: translateY(-3px);
    background: #dcae45;
    color: #071a2d;
}


.sky-hero-primary i {
    font-size: 12px;

    transition:
        transform .25s ease;
}


.sky-hero-primary:hover i {
    transform: translateX(4px);
}


.sky-hero-secondary {
    border: 1px solid rgba(255, 255, 255, .3);

    background: rgba(255, 255, 255, .04);

    color: #ffffff;
}


.sky-hero-secondary:hover {
    transform: translateY(-3px);

    border-color: rgba(255, 255, 255, .7);

    background: rgba(255, 255, 255, .10);
}


/* =========================================================
   TRUST
========================================================= */

.sky-hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 13px;

    margin-top: 40px;

    color: rgba(255, 255, 255, .45);

    font-size: 14px;
    line-height: 1.6;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.sky-hero-trust i {
    width: 4px;
    height: 4px;

    flex: 0 0 4px;

    border-radius: 50%;

    background: #dcae45;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.sky-hero-visual {
    position: relative;

    width: 100%;
    min-width: 0;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    isolation: isolate;
}


/* =========================================================
   SLIDER
========================================================= */

.sky-hero-slider {
    position: relative;
    z-index: 3;

    width: min(100%, 510px);

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius:
        180px 180px 20px 20px;

    background: #dce7ef;

    box-shadow:
        0 30px 75px rgba(0, 0, 0, .28);
}


/* =========================================================
   SLIDES
========================================================= */

.sky-hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.06);

    transition:
        opacity .9s ease,
        transform 5s ease,
        visibility .9s ease;
}


.sky-hero-slide.active {
    opacity: 1;
    visibility: visible;

    transform: scale(1);
}


.sky-hero-slide img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   SLIDE OVERLAY
========================================================= */

.sky-hero-slide::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0, 0, 0, .34) 100%
        );

    pointer-events: none;
}


/* =========================================================
   SLIDER BORDER
========================================================= */

.sky-hero-slider::before {
    content: "";

    position: absolute;

    inset: 13px;

    z-index: 5;

    border:
        1px solid
        rgba(255, 255, 255, .20);

    border-radius:
        166px 166px 13px 13px;

    pointer-events: none;
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.sky-hero-visual::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        rgba(105, 185, 237, .08);

    filter: blur(12px);

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.sky-hero-circle {
    position: absolute;

    width: 440px;
    height: 440px;

    top: 70px;
    right: -75px;

    z-index: 1;

    border:
        1px solid
        rgba(255, 255, 255, .11);

    border-radius: 50%;

    pointer-events: none;
}


.sky-hero-circle::before {
    content: "";

    position: absolute;

    inset: 40px;

    border:
        1px solid
        rgba(255, 255, 255, .07);

    border-radius: 50%;
}


.sky-hero-circle::after {
    content: "";

    position: absolute;

    inset: 90px;

    border:
        1px solid
        rgba(255, 255, 255, .05);

    border-radius: 50%;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.sky-product-card {
    position: absolute;

    z-index: 8;

    left: -15px;
    bottom: 65px;

    width: 280px;
    max-width: 280px;

    min-height: 82px;

    padding: 15px;

    display: flex;
    align-items: center;

    gap: 13px;

    border:
        1px solid
        rgba(255, 255, 255, .15);

    border-radius: 11px;

    background:
        rgba(7, 26, 45, .94);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, .28);
}


.sky-product-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background:
        rgba(105, 185, 237, .14);

    color: #69b9ed;

    font-size: 17px;
}


.sky-product-card strong {
    display: block;

    margin: 0;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.35;

    font-weight: 700;
}


.sky-product-card span {
    display: block;

    margin-top: 5px;

    color: rgba(255, 255, 255, .58);

    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   DOTS
========================================================= */

.sky-hero-dots {
    position: absolute;

    z-index: 10;

    right: 18px;
    bottom: 28px;

    display: flex;
    align-items: center;

    gap: 7px;
}


.sky-hero-dots button {
    width: 8px;
    height: 8px;

    padding: 0;
    margin: 0;

    border: 0;
    outline: 0;

    border-radius: 20px;

    background:
        rgba(255, 255, 255, .5);

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease;
}


.sky-hero-dots button.active {
    width: 26px;

    background: #ffffff;
}


/* =========================================================
   NUMBER
========================================================= */

.sky-hero-number {
    position: absolute;

    z-index: 9;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    writing-mode: vertical-rl;

    color:
        rgba(255, 255, 255, .40);

    font-family:
        "Manrope",
        "Segoe UI",
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   LAPTOP
   1200px
========================================================= */

@media (max-width: 1200px) {

    .sky-hero-container {
        width: min(1120px, calc(100% - 60px));

        grid-template-columns:
            minmax(0, 1fr)
            minmax(380px, .85fr);

        gap: 40px;
    }


    .sky-hero-content h1 {
        font-size:
            clamp(46px, 5.2vw, 68px);
    }


    .sky-hero-slider {
        width: min(100%, 450px);
    }


    .sky-hero-circle {
        width: 390px;
        height: 390px;

        right: -110px;
    }


    .sky-product-card {
        left: -5px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
   1000px
========================================================= */

@media (max-width: 1000px) {

    .sky-hero {
        min-height: auto;
    }


    .sky-hero-container {
        width: min(760px, calc(100% - 50px));

        min-height: auto;

        padding:
            90px 0
            110px;

        grid-template-columns: 1fr;

        gap: 70px;
    }


    .sky-hero-content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }


    .sky-hero-eyebrow {
        justify-content: center;
    }


    .sky-hero-content h1 {
        max-width: 720px;

        margin-left: auto;
        margin-right: auto;

        font-size:
            clamp(48px, 7vw, 68px);
    }


    .sky-hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .sky-hero-buttons {
        justify-content: center;
    }


    .sky-hero-trust {
        justify-content: center;
    }


    .sky-hero-visual {
        min-height: 560px;
    }


    .sky-hero-slider {
        width: min(70%, 470px);
    }


    .sky-product-card {
        left: 8%;
        bottom: 45px;
    }


    .sky-hero-circle {
        right: 0;
        top: 50px;
    }


    .sky-hero-number {
        right: 5%;
    }

}


/* =========================================================
   MOBILE
   700px
========================================================= */

@media (max-width: 700px) {

    .sky-hero-container {
        width: calc(100% - 32px);

        padding:
            65px 0
            85px;

        gap: 50px;
    }


    .sky-hero-content {
        text-align: left;
    }


    .sky-hero-eyebrow {
        justify-content: flex-start;

        margin-bottom: 20px;

        font-size: 14px;

        letter-spacing: 2px;
    }


    .sky-hero-eyebrow::before {
        width: 25px;
        flex-basis: 25px;
    }


    .sky-hero-content h1 {
        font-size:
            clamp(42px, 11vw, 58px);

        line-height: 1.07;

        letter-spacing: -2px;
    }


    .sky-hero-content h1 span {
        display: block;
    }


    .sky-hero-description {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.8;
    }


    .sky-hero-buttons {
        width: 100%;

        margin-top: 28px;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;
    }


    .sky-hero-primary,
    .sky-hero-secondary {
        width: 100%;

        min-height: 52px;
    }


    .sky-hero-trust {
        justify-content: flex-start;

        margin-top: 30px;

        font-size: 14px;

        letter-spacing: 1px;
    }


    /* -----------------------------
       MOBILE VISUAL
    ----------------------------- */

    .sky-hero-visual {
        width: 100%;

        min-height: 470px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    .sky-hero-slider {
        width: 100%;

        max-width: 380px;

        aspect-ratio: 4 / 5;

        border-radius:
            115px 115px 15px 15px;
    }


    .sky-hero-slider::before {
        inset: 9px;

        border-radius:
            106px 106px 10px 10px;
    }


    .sky-hero-circle {
        width: 300px;
        height: 300px;

        right: -105px;
        top: 55px;
    }


    .sky-hero-circle::before {
        inset: 30px;
    }


    .sky-hero-circle::after {
        inset: 65px;
    }


    .sky-hero-visual::before {
        width: 290px;
        height: 290px;
    }


    /* -----------------------------
       PRODUCT CARD
    ----------------------------- */

    .sky-product-card {
        left: 0;
        bottom: 18px;

        width: 245px;
        max-width: 245px;

        min-height: 70px;

        padding: 12px;
    }


    .sky-product-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .sky-product-card strong {
        font-size: 14px;
    }


    .sky-product-card span {
        font-size: 14px;
    }


    /* -----------------------------
       DOTS
    ----------------------------- */

    .sky-hero-dots {
        right: 12px;
        bottom: 22px;
    }


    /* -----------------------------
       NUMBER
    ----------------------------- */

    .sky-hero-number {
        right: 0;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
   480px
========================================================= */

@media (max-width: 480px) {

    .sky-hero-container {
        width: calc(100% - 28px);

        padding:
            55px 0
            75px;

        gap: 42px;
    }


    .sky-hero-content h1 {
        font-size: 42px;

        letter-spacing: -1.7px;
    }


    .sky-hero-description {
        font-size: 14px;
    }


    .sky-hero-trust {
        gap: 9px;

        line-height: 1.8;
    }


    .sky-hero-visual {
        min-height: 410px;
    }


    .sky-hero-slider {
        width: 100%;

        max-width: 393px;

        border-radius:
            100px 100px 13px 13px;
    }


    .sky-hero-slider::before {
        border-radius:
            91px 91px 9px 9px;
    }


    .sky-product-card {
        left: 0;
        bottom: 7px;

        width: 220px;
        max-width: 220px;

        min-height: 62px;

        padding: 10px;
    }


    .sky-product-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 15px;
    }


    .sky-product-card strong {
        font-size: 14px;
    }


    .sky-product-card span {
        display: none;
    }


    .sky-hero-circle {
        width: 255px;
        height: 255px;

        right: -115px;

        top: 45px;
    }


    .sky-hero-dots {
        right: 8px;
        bottom: 14px;
    }


    .sky-hero-number {
        display: none;
    }

}


/* =========================================================
   VERY SMALL MOBILE
   360px
========================================================= */

@media (max-width: 360px) {

    .sky-hero-container {
        width: calc(100% - 24px);

        padding:
            48px 0
            65px;
    }


    .sky-hero-content h1 {
        font-size: 38px;
    }


    .sky-hero-description {
        font-size: 14px;
    }


    .sky-hero-visual {
        min-height: 380px;
    }


    .sky-hero-slider {
        width: 100%;

        border-radius:
            88px 88px 12px 12px;
    }


    .sky-hero-slider::before {
        border-radius:
            80px 80px 8px 8px;
    }


    .sky-product-card {
        width: 205px;
        max-width: 205px;
    }


    .sky-product-card strong {
        font-size: 14px;
    }


    .sky-hero-circle {
        width: 230px;
        height: 230px;

        right: -110px;
    }


    .sky-hero-dots {
        display: none;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sky-hero-slide,
    .sky-product-card,
    .sky-hero-primary,
    .sky-hero-secondary,
    .sky-hero-dots button {
        transition: none !important;
    }

}




/* =========================================================
   SKYSEVEN PRODUCT RANGE
========================================================= */

.ss-product-range {

    width: 100%;

    padding: 110px 0 115px;

    background: #ffffff;

    overflow: hidden;

}


/* =========================================================
   CONTAINER
========================================================= */

.ss-product-container {

    width: min(
        calc(100% - 50px),
        var(--ss-container)
    );

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.ss-product-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 35px;

    margin-bottom: 42px;

}


.ss-product-heading {

    max-width: 650px;

}


.ss-product-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;

    font-size: 14px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--ss-blue);

}


.ss-product-eyebrow::before {

    content: "";

    width: 30px;

    height: 1px;

    background: var(--ss-blue);

}


.ss-product-heading h2 {

    margin: 0;

    color: var(--ss-text);

    font-size: clamp(
        38px,
        4vw,
        56px
    );

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -1.5px;

}


.ss-product-heading p {

    max-width: 570px;

    margin: 18px 0 0;

    color: var(--ss-muted);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   NAVIGATION
========================================================= */

.ss-product-navigation {

    display: flex;

    gap: 10px;

    flex-shrink: 0;

}


.ss-product-navigation button {

    width: 48px;

    height: 48px;

    border: 1px solid #dfe4eb;

    border-radius: 50%;

    background: #ffffff;

    color: var(--ss-text);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;

}


.ss-product-navigation button:hover {

    background: var(--ss-blue);

    border-color: var(--ss-blue);

    color: #ffffff;

    transform: translateY(-2px);

}


.ss-product-navigation button:active {

    transform: scale(.94);

}


/* =========================================================
   VIEWPORT
========================================================= */

.ss-product-viewport {

    width: 100%;

    overflow: hidden;

}


/* =========================================================
   TRACK
========================================================= */

.ss-product-track {

    display: flex;

    gap: 22px;

    will-change: transform;

    transition:
        transform .65s cubic-bezier(
            .22,
            .61,
            .36,
            1
        );

}


/* =========================================================
   CARD
========================================================= */

.ss-product-card {

    flex: 0 0 calc(
        (100% - 44px) / 3
    );

    min-width: 0;

    background: #ffffff;

    border: 1px solid #e2e7ee;

    border-radius: 8px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


.ss-product-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(23,105,224,.22);

    box-shadow:
        0 22px 55px
        rgba(7,17,31,.11);

}


/* =========================================================
   IMAGE
========================================================= */

.ss-product-image {

    position: relative;

    width: 100%;

    aspect-ratio: 1.42 / 1;

    overflow: hidden;

    background: #eef2f6;

}


.ss-product-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.ss-product-card:hover
.ss-product-image img {

    transform: scale(1.045);

}


/* =========================================================
   NUMBER
========================================================= */

.ss-product-number {

    position: absolute;

    top: 14px;

    right: 14px;

    min-width: 34px;

    height: 30px;

    padding: 0 9px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 4px;

    background:
        rgba(7,17,31,.82);

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    backdrop-filter: blur(8px);

}


/* =========================================================
   CONTENT
========================================================= */

.ss-product-content {

    padding: 24px 24px 25px;

}


.ss-product-category {

    display: block;

    margin-bottom: 9px;

    color: var(--ss-blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.ss-product-content h3 {

    margin: 0;

    color: var(--ss-text);

    font-size: 21px;

    line-height: 1.3;

    font-weight: 700;

}


.ss-product-content p {

    min-height: 52px;

    margin: 10px 0 21px;

    color: var(--ss-muted);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   BUTTON
========================================================= */

.ss-product-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 43px;

    padding: 0 18px;

    border: 1px solid #d8dee7;

    border-radius: 4px;

    color: var(--ss-text);

    background: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        gap .3s ease;

}


.ss-product-button i {

    font-size: 12px;

    transition:
        transform .3s ease;

}


.ss-product-button:hover {

    background: var(--ss-blue);

    border-color: var(--ss-blue);

    color: #ffffff;

    gap: 14px;

}


.ss-product-button:hover i {

    transform: translateX(3px);

}


/* =========================================================
   BOTTOM
========================================================= */

.ss-product-bottom {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 28px;

    color: #8993a3;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.ss-product-line {

    width: 70px;

    height: 1px;

    background: #dce1e8;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .ss-product-range {

        padding: 90px 0 95px;

    }


    .ss-product-card {

        flex-basis: calc(
            (100% - 22px) / 2
        );

    }


    .ss-product-heading h2 {

        font-size: 46px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ss-product-range {

        padding: 70px 0 80px;

    }


    .ss-product-container {

        width:
            calc(100% - 30px);

    }


    .ss-product-header {

        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 30px;

        gap: 25px;

    }


    .ss-product-heading h2 {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .ss-product-heading p {

        font-size: 14px;

        line-height: 1.75;

    }


    .ss-product-navigation {

        width: 100%;

        justify-content: flex-end;

    }


    .ss-product-navigation button {

        width: 44px;

        height: 44px;

    }


    .ss-product-track {

        gap: 15px;

    }


    .ss-product-card {

        flex-basis: 100%;

    }


    .ss-product-image {

        aspect-ratio: 1.35 / 1;

    }


    .ss-product-content {

        padding: 21px;

    }


    .ss-product-content h3 {

        font-size: 20px;

    }


    .ss-product-content p {

        min-height: auto;

        font-size: 14px;

    }


    .ss-product-bottom {

        font-size: 10px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .ss-product-heading h2 {

        font-size: 34px;

    }


    .ss-product-eyebrow {

        font-size: 12px;

        letter-spacing: 2px;

    }


    .ss-product-content h3 {

        font-size: 19px;

    }


    .ss-product-button {

        width: 100%;

    }

}


/* =========================================================
   SKYSEVEN OUR VALUE
========================================================= */

.ss-value-section {

    width: 100%;

    padding: 115px 0;

    background: #f7f9fc;

    overflow: hidden;

}


.ss-value-container {

    width: min(
        calc(100% - 50px),
        var(--ss-container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 90px;

}


/* =========================================================
   LEFT IMAGE
========================================================= */

.ss-value-visual {

    position: relative;

    min-height: 560px;

}


.ss-value-image {

    position: relative;

    width: 82%;

    height: 560px;

    overflow: hidden;

    border-radius:
        18px 18px 18px 90px;

    box-shadow:
        0 25px 65px
        rgba(7,17,31,.14);

}


.ss-value-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7,17,31,0) 55%,
            rgba(7,17,31,.22) 100%
        );

}


.ss-value-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s
        cubic-bezier(.22,.61,.36,1);

}


.ss-value-visual:hover
.ss-value-image img {

    transform: scale(1.045);

}


/* =========================================================
   IMAGE SIDE DECORATION
========================================================= */

.ss-value-visual::before {

    content: "";

    position: absolute;

    width: 230px;

    height: 230px;

    right: 0;

    top: -35px;

    border: 1px solid
        rgba(23,105,224,.15);

    border-radius: 50%;

}


.ss-value-visual::after {

    content: "";

    position: absolute;

    width: 155px;

    height: 155px;

    right: 38px;

    top: 3px;

    border: 1px solid
        rgba(220,174,69,.2);

    border-radius: 50%;

}


/* =========================================================
   PLAY / ARROW ELEMENT
========================================================= */

.ss-value-play {

    position: absolute;

    z-index: 4;

    right: 12%;

    top: 50%;

    width: 68px;

    height: 68px;

    transform:
        translateY(-50%);

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--ss-blue);

    box-shadow:
        0 12px 35px
        rgba(7,17,31,.18);

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;

}


.ss-value-play i {

    font-size: 16px;

}


.ss-value-visual:hover
.ss-value-play {

    transform:
        translateY(-50%)
        scale(1.08);

    background: var(--ss-blue);

    color: #ffffff;

}


/* =========================================================
   IMAGE LABEL
========================================================= */

.ss-value-image-label {

    position: absolute;

    z-index: 5;

    left: 28px;

    bottom: 27px;

    display: flex;

    flex-direction: column;

}


.ss-value-image-label span {

    color: rgba(255,255,255,.75);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

}


.ss-value-image-label strong {

    margin-top: 3px;

    color: #ffffff;

    font-size: 27px;

    line-height: 1;

    letter-spacing: 1px;

}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.ss-value-content {

    max-width: 570px;

}


.ss-value-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    color: var(--ss-blue);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.ss-value-eyebrow::before {

    content: "";

    width: 30px;

    height: 1px;

    background: var(--ss-blue);

}


.ss-value-content h2 {

    margin: 0;

    color: var(--ss-text);

    font-size:
        clamp(40px, 4.2vw, 58px);

    line-height: 1.06;

    letter-spacing: -1.8px;

    font-weight: 700;

}


.ss-value-content h2 span {

    color: var(--ss-blue);

}


.ss-value-intro {

    margin: 22px 0 31px;

    color: var(--ss-muted);

    font-size: 15px;

    line-height: 1.85;

}


/* =========================================================
   VALUE LIST
========================================================= */

.ss-value-list {

    border-top:
        1px solid #dfe4eb;

}


.ss-value-item {

    border-bottom:
        1px solid #dfe4eb;

}


.ss-value-trigger {

    width: 100%;

    min-height: 67px;

    padding: 0;

    border: 0;

    background: transparent;

    display: flex;

    align-items: center;

    text-align: left;

    cursor: pointer;

}


.ss-value-icon {

    width: 32px;

    height: 32px;

    margin-right: 16px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 5px;

    background:
        rgba(23,105,224,.08);

    color: var(--ss-blue);

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease;

}


.ss-value-title {

    flex: 1;

    color: var(--ss-text);

    font-size: 15px;

    font-weight: 700;

}


.ss-value-arrow {

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #7d8795;

    font-size: 11px;

    transition:
        transform .35s ease,
        color .3s ease;

}


/* =========================================================
   ANSWER
========================================================= */

.ss-value-answer {

    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .4s
        cubic-bezier(.22,.61,.36,1);

}


.ss-value-answer p {

    overflow: hidden;

    margin: 0;

    padding: 0 45px 0 48px;

    color: var(--ss-muted);

    font-size: 14px;

    line-height: 1.75;

    transition:
        padding .4s ease;

}


/* =========================================================
   ACTIVE
========================================================= */

.ss-value-item.ss-value-active
.ss-value-answer {

    grid-template-rows: 1fr;

}


.ss-value-item.ss-value-active
.ss-value-answer p {

    padding-bottom: 21px;

}


.ss-value-item.ss-value-active
.ss-value-arrow {

    transform:
        rotate(180deg);

    color: var(--ss-blue);

}


.ss-value-item.ss-value-active
.ss-value-icon {

    background: var(--ss-blue);

    color: #ffffff;

}


/* =========================================================
   HOVER
========================================================= */

.ss-value-trigger:hover
.ss-value-title {

    color: var(--ss-blue);

}


.ss-value-trigger:hover
.ss-value-icon {

    background:
        rgba(23,105,224,.13);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .ss-value-section {

        padding: 90px 0;

    }


    .ss-value-container {

        grid-template-columns: 1fr;

        gap: 65px;

    }


    .ss-value-visual {

        min-height: 500px;

    }


    .ss-value-image {

        width: 85%;

        height: 500px;

    }


    .ss-value-content {

        max-width: 800px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .ss-value-section {

        padding: 70px 0 80px;

    }


    .ss-value-container {

        width:
            calc(100% - 30px);

        gap: 48px;

    }


    .ss-value-visual {

        min-height: 390px;

    }


    .ss-value-image {

        width: 90%;

        height: 390px;

        border-radius:
            14px 14px 14px 55px;

    }


    .ss-value-play {

        right: 3%;

        width: 56px;

        height: 56px;

    }


    .ss-value-image-label {

        left: 20px;

        bottom: 20px;

    }


    .ss-value-image-label strong {

        font-size: 23px;

    }


    .ss-value-content h2 {

        font-size: 40px;

        letter-spacing: -1px;

    }


    .ss-value-intro {

        font-size: 14px;

        line-height: 1.75;

    }


    .ss-value-trigger {

        min-height: 63px;

    }


    .ss-value-icon {

        width: 30px;

        height: 30px;

        margin-right: 12px;

    }


    .ss-value-title {

        font-size: 14px;

    }


    .ss-value-answer p {

        padding-left: 42px;

        padding-right: 20px;

        font-size: 14px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .ss-value-visual {

        min-height: 340px;

    }


    .ss-value-image {

        height: 340px;

        width: 92%;

    }


    .ss-value-content h2 {

        font-size: 35px;

    }


    .ss-value-eyebrow {

        font-size: 12px;

        letter-spacing: 2px;

    }


    .ss-value-trigger {

        min-height: 60px;

    }


    .ss-value-icon {

        width: 28px;

        height: 28px;

        margin-right: 10px;

    }


    .ss-value-title {

        font-size: 14px;

    }

}








/* =========================================================
   SKYSEVEN — HOW IT WORKS
   Unique namespace — will not affect other sections
========================================================= */

.skyseven-process {

    position: relative;

    width: 100%;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


.skyseven-process-container {

    width: min(
        calc(100% - 40px),
        var(--ss-container)
    );

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.skyseven-process-header {

    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}


.skyseven-process-label {

    display: inline-block;

    margin-bottom: 16px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: var(--ss-blue);

}


.skyseven-process-header h2 {

    margin: 0;

    color: var(--ss-text);

    font-size: clamp(36px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -1.5px;

    font-weight: 700;
}


.skyseven-process-header p {

    max-width: 650px;

    margin: 20px auto 0;

    color: var(--ss-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.skyseven-process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.skyseven-process-card {

    position: relative;

    min-height: 330px;

    padding: 28px;

    border: 1px solid #e7ebf1;

    background: #ffffff;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    overflow: hidden;
}


.skyseven-process-card:hover {

    transform: translateY(-8px);

    border-color: rgba(23,105,224,.2);

    box-shadow:
        0 22px 50px rgba(7,17,31,.10);
}


/* =========================================================
   TOP
========================================================= */

.skyseven-process-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 42px;
}


.skyseven-process-number {

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.5px;

    color: var(--ss-muted);
}


.skyseven-process-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #eef5ff;

    color: var(--ss-blue);

    font-size: 18px;

    transition:
        transform .35s ease,
        background .35s ease;
}


.skyseven-process-card:hover
.skyseven-process-icon {

    transform: scale(1.08);

    background: var(--ss-blue);

    color: #ffffff;
}


/* =========================================================
   CONTENT
========================================================= */

.skyseven-process-card h3 {

    margin: 0;

    color: var(--ss-text);

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;
}


.skyseven-process-card p {

    margin: 15px 0 0;

    color: var(--ss-muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   BOTTOM LINE
========================================================= */

.skyseven-process-line {

    position: absolute;

    left: 28px;

    bottom: 25px;

    width: 38px;

    height: 2px;

    background: var(--ss-blue);

    transition: width .35s ease;
}


.skyseven-process-card:hover
.skyseven-process-line {

    width: 75px;
}


/* =========================================================
   CTA
========================================================= */

.skyseven-process-action {

    display: flex;

    justify-content: center;

    margin-top: 55px;
}


.skyseven-process-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    min-height: 52px;

    padding: 0 25px;

    text-decoration: none;

    color: #ffffff;

    background: var(--ss-navy);

    font-size: 14px;

    font-weight: 700;

    transition:
        background .3s ease,
        transform .3s ease;
}


.skyseven-process-button:hover {

    background: var(--ss-blue);

    transform: translateY(-3px);
}


.skyseven-process-button i {

    transition:
        transform .3s ease;
}


.skyseven-process-button:hover i {

    transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .skyseven-process {

        padding: 90px 0;

    }


    .skyseven-process-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;

    }


    .skyseven-process-card {

        min-height: 300px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .skyseven-process {

        padding: 75px 0;

    }


    .skyseven-process-container {

        width:
            calc(100% - 30px);

    }


    .skyseven-process-header {

        margin-bottom: 42px;

    }


    .skyseven-process-label {

        font-size: 14px;

        letter-spacing: 1.8px;

    }


    .skyseven-process-header h2 {

        font-size: 36px;

        letter-spacing: -1px;

    }


    .skyseven-process-header p {

        font-size: 14px;

        line-height: 1.75;

    }


    .skyseven-process-grid {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .skyseven-process-card {

        min-height: auto;

        padding: 25px;

    }


    .skyseven-process-top {

        margin-bottom: 30px;

    }


    .skyseven-process-card h3 {

        font-size: 19px;

    }


    .skyseven-process-card p {

        font-size: 14px;

        padding-bottom: 22px;

    }


    .skyseven-process-line {

        left: 25px;

        bottom: 20px;

    }


    .skyseven-process-action {

        margin-top: 40px;

    }


    .skyseven-process-button {

        width: 100%;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .skyseven-process-header h2 {

        font-size: 32px;

    }


    .skyseven-process-card {

        padding: 22px;

    }


    .skyseven-process-icon {

        width: 46px;

        height: 46px;

    }

}


/* =========================================================
   SKYSEVEN — BUSINESS OPPORTUNITY
   Completely isolated classes
========================================================= */

.skyseven-opportunity {

    position: relative;

    width: 100%;

    padding: 115px 0;

    background: var(--ss-navy);

    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.skyseven-opportunity-container {

    width: min(
        calc(100% - 40px),
        var(--ss-container)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, .88fr)
        minmax(0, 1.12fr);

    align-items: center;

    gap: 90px;
}


/* =========================================================
   CONTENT
========================================================= */

.skyseven-opportunity-content {

    position: relative;

    z-index: 5;

    max-width: 570px;
}


.skyseven-opportunity-label {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--ss-gold);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.skyseven-opportunity-label::before {

    content: "";

    width: 32px;

    height: 1px;

    background: var(--ss-gold);
}


.skyseven-opportunity-content h2 {

    margin: 0;

    color: var(--ss-white);

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: 1.04;

    letter-spacing: -2.5px;

    font-weight: 700;
}


.skyseven-opportunity-content h2 span {

    display: block;

    color: var(--ss-blue);
}


.skyseven-opportunity-intro {

    margin: 28px 0 0;

    max-width: 540px;

    color: rgba(255,255,255,.82);

    font-size: 16px;

    line-height: 1.8;

}


.skyseven-opportunity-text {

    margin: 17px 0 0;

    max-width: 520px;

    color: rgba(255,255,255,.52);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.skyseven-opportunity-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 35px;

    min-height: 54px;

    padding: 0 26px;

    color: var(--ss-navy);

    background: var(--ss-gold);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.skyseven-opportunity-button:hover {

    transform: translateY(-3px);

    background: #ffffff;

    box-shadow:
        0 15px 35px rgba(0,0,0,.25);
}


.skyseven-opportunity-button i {

    transition:
        transform .3s ease;
}


.skyseven-opportunity-button:hover i {

    transform: translateX(5px);
}


/* =========================================================
   VISUAL
========================================================= */

.skyseven-opportunity-visual {

    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   IMAGE
========================================================= */

.skyseven-opportunity-image {

    position: relative;

    z-index: 2;

    width: min(
        100%,
        560px
    );

    aspect-ratio: 4 / 5;

    overflow: hidden;

    border-radius:
        12px 120px 12px 120px;

    box-shadow:
        0 35px 80px rgba(0,0,0,.38);
}


.skyseven-opportunity-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7,17,31,.45)
        );

    pointer-events: none;
}


.skyseven-opportunity-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transform:
        scale(1.04);

    transition:
        transform .8s ease;
}


.skyseven-opportunity-visual:hover
.skyseven-opportunity-image img {

    transform:
        scale(1.09);
}


/* =========================================================
   DECORATIVE FRAME
========================================================= */

.skyseven-opportunity-visual::before {

    content: "";

    position: absolute;

    z-index: 1;

    width: 430px;

    height: 430px;

    right: -30px;

    top: 35px;

    border:
        1px solid
        rgba(220,174,69,.25);

    border-radius: 50%;
}


.skyseven-opportunity-visual::after {

    content: "";

    position: absolute;

    z-index: 0;

    width: 260px;

    height: 260px;

    left: 5px;

    bottom: 25px;

    border:
        1px solid
        rgba(23,105,224,.25);

    border-radius: 50%;
}


/* =========================================================
   FLOATING STATS
========================================================= */

.skyseven-opportunity-stat {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    min-width: 215px;

    border:
        1px solid
        rgba(255,255,255,.12);

    background:
        rgba(11,27,48,.94);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 20px 45px rgba(0,0,0,.3);

    transition:
        transform .35s ease;
}


.skyseven-opportunity-stat:hover {

    transform:
        translateY(-5px);
}


.skyseven-opportunity-stat-one {

    left: -35px;

    bottom: 105px;
}


.skyseven-opportunity-stat-two {

    right: -35px;

    top: 105px;
}


.skyseven-opportunity-stat-number {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(220,174,69,.4);

    color: var(--ss-gold);

    font-size: 12px;

    font-weight: 800;
}


.skyseven-opportunity-stat strong {

    display: block;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.3;
}


.skyseven-opportunity-stat small {

    display: block;

    margin-top: 4px;

    color: rgba(255,255,255,.48);

    font-size: 14px;

    line-height: 1.3;
}


/* =========================================================
   BIG NUMBER
========================================================= */

.skyseven-opportunity-big-number {

    position: absolute;

    z-index: 1;

    right: 5px;

    bottom: 8px;

    color: rgba(255,255,255,.045);

    font-size: 150px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -10px;

    pointer-events: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .skyseven-opportunity {

        padding: 90px 0;

    }


    .skyseven-opportunity-container {

        grid-template-columns: 1fr;

        gap: 70px;

    }


    .skyseven-opportunity-content {

        max-width: 760px;

    }


    .skyseven-opportunity-visual {

        min-height: 560px;

    }


    .skyseven-opportunity-image {

        width: min(
            75%,
            520px
        );

    }


    .skyseven-opportunity-stat-one {

        left: 5%;

    }


    .skyseven-opportunity-stat-two {

        right: 5%;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .skyseven-opportunity {

        padding: 75px 0;

    }


    .skyseven-opportunity-container {

        width:
            calc(100% - 30px);

        gap: 48px;

    }


    .skyseven-opportunity-label {

        font-size: 14px;

        letter-spacing: 1.8px;

    }


    .skyseven-opportunity-content h2 {

        font-size: 42px;

        line-height: 1.08;

        letter-spacing: -1.5px;

    }


    .skyseven-opportunity-intro {

        margin-top: 22px;

        font-size: 14px;

        line-height: 1.8;

    }


    .skyseven-opportunity-text {

        font-size: 14px;

        line-height: 1.75;

    }


    .skyseven-opportunity-button {

        width: 100%;

        margin-top: 28px;

    }


    .skyseven-opportunity-visual {

        min-height: 470px;

    }


    .skyseven-opportunity-image {

        width: 84%;

        aspect-ratio: 4 / 5;

        border-radius:
            10px 75px 10px 75px;

    }


    .skyseven-opportunity-visual::before {

        width: 310px;

        height: 310px;

        right: -105px;

        top: 45px;

    }


    .skyseven-opportunity-visual::after {

        width: 190px;

        height: 190px;

        left: -80px;

        bottom: 20px;

    }


    .skyseven-opportunity-stat {

        min-width: 190px;

        padding: 12px;

    }


    .skyseven-opportunity-stat-one {

        left: 0;

        bottom: 65px;

    }


    .skyseven-opportunity-stat-two {

        right: 0;

        top: 55px;

    }


    .skyseven-opportunity-stat strong {

        font-size: 14px;

    }


    .skyseven-opportunity-stat small {

        font-size: 14px;

    }


    .skyseven-opportunity-big-number {

        font-size: 100px;

        right: -5px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .skyseven-opportunity {

        padding: 65px 0;

    }


    .skyseven-opportunity-content h2 {

        font-size: 37px;

    }


    .skyseven-opportunity-visual {

        min-height: 430px;

    }


    .skyseven-opportunity-image {

        width: 82%;

    }


    .skyseven-opportunity-stat {

        min-width: 165px;

        gap: 9px;

        padding: 10px;

    }


    .skyseven-opportunity-stat-number {

        width: 32px;

        height: 32px;

        font-size: 11px;

    }


    .skyseven-opportunity-stat strong {

        font-size: 14px;

    }


    .skyseven-opportunity-stat small {

        display: none;

    }


    .skyseven-opportunity-stat-one {

        left: -2px;

        bottom: 48px;

    }


    .skyseven-opportunity-stat-two {

        right: -2px;

        top: 35px;

    }

}
/* =========================================================
   REVEAL ANIMATION
========================================================= */

.skyseven-opportunity-content,
.skyseven-opportunity-visual {

    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}


.skyseven-opportunity-visible {

    opacity: 1;

    transform: translateY(0);
}


.skyseven-opportunity-stat {

    opacity: 0;

    transition:
        opacity .6s ease,
        transform .6s ease;
}


.skyseven-opportunity-stat-visible {

    opacity: 1;
}





/* =========================================================
   SKYSEVEN FOOTER
   Scoped only to footer
========================================================= */

.ss-footer {
    position: relative;
    width: 100%;
    background: var(--ss-navy);
    color: var(--ss-white);
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.ss-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    top: -220px;

    border: 1px solid rgba(255,255,255,.06);
    border-radius: 50%;

    pointer-events: none;
}

.ss-footer::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -150px;
    bottom: -170px;

    border: 1px solid rgba(255,255,255,.04);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.ss-footer-inner {
    position: relative;
    z-index: 2;

    width: min(1240px, calc(100% - 60px));

    margin: 0 auto;

    padding: 75px 0 65px;

    display: grid;

    grid-template-columns:
        minmax(280px, 1.8fr)
        repeat(3, minmax(150px, 1fr));

    gap: 70px;
}


/* =========================================================
   BRAND
========================================================= */

.ss-footer-brand {
    max-width: 390px;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.ss-footer-logo {
    display: inline-flex;

    align-items: center;

    text-decoration: none;

    margin-bottom: 24px;
    background-color: white;
    border-radius: 12px;
}


/*
   If you later replace the 7 with your
   actual SkySeven logo image, this
   styling will not affect it.
*/

.ss-footer .ss-logo-mark {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--ss-gold);

    color: var(--ss-navy);

    font-size: 22px;
    font-weight: 800;
}


.ss-footer .ss-logo-content {
    display: flex;

    flex-direction: column;

    margin-left: 12px;

    line-height: 1;
}


.ss-footer .ss-logo-content strong {
    color: var(--ss-white);

    font-size: 19px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.ss-footer .ss-logo-content small {
    margin-top: 6px;

    color: rgba(255,255,255,.55);

    font-size: 14px;

    letter-spacing: 3px;
}


/* =========================================================
   BRAND DESCRIPTION
========================================================= */

.ss-footer-brand > p {
    margin: 0;

    max-width: 370px;

    color: rgba(255,255,255,.62);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.ss-footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* =========================================================
   COLUMN HEADING
========================================================= */

.ss-footer-column h4 {
    margin: 4px 0 22px;

    color: var(--ss-white);

    font-size: 20px;

    font-weight: 700;

    letter-spacing: .3px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.ss-footer-column a {
    position: relative;

    display: inline-block;

    width: fit-content;

    margin-bottom: 14px;

    color: rgba(255,255,255,.58);

    font-size: 15px;

    line-height: 1.5;

    text-decoration: none;

    transition:
        color .25s ease,
        transform .25s ease;
}


.ss-footer-column a::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;
    height: 1px;

    background: var(--ss-gold);

    transition: width .25s ease;
}


.ss-footer-column a:hover {
    color: var(--ss-white);

    transform: translateX(4px);
}


.ss-footer-column a:hover::before {
    width: 100%;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.ss-footer-bottom {
    position: relative;

    z-index: 2;

    width: min(1240px, calc(100% - 60px));

    margin: 0 auto;

    min-height: 78px;

    padding: 22px 0;

    border-top:
        1px solid
        rgba(255,255,255,.09);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* COPYRIGHT */

.ss-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.45);

    font-size: 14px;

    line-height: 1.6;
}


/* POLICY LINKS */

.ss-footer-bottom > div {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 28px;
}


.ss-footer-bottom a {
    color: rgba(255,255,255,.45);

    font-size: 14px;

    text-decoration: none;

    transition:
        color .25s ease;
}


.ss-footer-bottom a:hover {
    color: var(--ss-white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .ss-footer-inner {
        width: calc(100% - 50px);

        grid-template-columns:
            1.5fr 1fr 1fr;

        gap: 45px;

        padding: 65px 0 50px;
    }


    .ss-footer-brand {
        grid-column: 1 / -1;

        max-width: 650px;
    }


    .ss-footer-bottom {
        width: calc(100% - 50px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ss-footer {
        width: 100%;

        overflow: hidden;
    }


    /* =====================================================
       MAIN FOOTER
    ===================================================== */

    .ss-footer-inner {

        width: calc(100% - 36px);

        margin: 0 auto;

        padding: 48px 0 35px;

        display: grid;

        grid-template-columns: 1fr 1fr;

        column-gap: 30px;

        row-gap: 0;
    }


    /* =====================================================
       BRAND
    ===================================================== */

    .ss-footer-brand {

        grid-column: 1 / -1;

        width: 100%;

        max-width: 100%;

        padding: 0 0 35px;

        margin: 0 0 8px;
    }


    /* =====================================================
       FOOTER LOGO
    ===================================================== */

    .ss-footer-logo {

        display: inline-flex;

        align-items: center;

        margin-bottom: 20px;

        max-width: 100%;
    }


    /*
       Image logo support
    */

    .ss-footer-logo .ss-logo-image {

        display: block;

        width: auto;

        max-width: 190px;

        height: auto;

        max-height: 58px;

        object-fit: contain;
    }


    .ss-footer-brand > p {

        width: 100%;

        max-width: 430px;

        margin: 0;

        color:
            rgba(255,255,255,.60);

        font-size: 14px;

        line-height: 1.8;
    }


    /* =====================================================
       FOOTER COLUMNS
    ===================================================== */

    .ss-footer-column {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        padding: 20px 0 25px;

        border: 0;

    }


    /*
       Keep headings simple on mobile.
       No accordion.
    */

    .ss-footer-column h4 {

        position: static;

        margin: 0 0 18px;

        padding: 0;

        color: var(--ss-white);

        font-size: 15px;

        font-weight: 700;

        line-height: 1.4;

        cursor: default;
    }


    /*
       Remove accordion arrow
    */

    .ss-footer-column h4::after {

        display: none;
    }


    /* =====================================================
       LINKS
    ===================================================== */

    .ss-footer-column a {

        display: block;

        width: auto;

        max-width: 100%;

        margin: 0 0 13px;

        padding: 0;

        color:
            rgba(255,255,255,.55);

        font-size: 14px;

        line-height: 1.6;

        opacity: 1;

        max-height: none;

        overflow: visible;

        pointer-events: auto;

        transform: none !important;

        text-decoration: none;
    }


    .ss-footer-column a:last-child {

        margin-bottom: 0;
    }


    .ss-footer-column a::before {

        display: none;
    }


    .ss-footer-column a:hover {

        color: var(--ss-white);

        transform: none !important;
    }


    /* =====================================================
       BOTTOM BAR
    ===================================================== */

    .ss-footer-bottom {

        width: calc(100% - 36px);

        min-height: auto;

        margin: 0 auto;

        padding: 24px 0 28px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 16px;

        border-top:
            1px solid
            rgba(255,255,255,.09);
    }


    .ss-footer-bottom p {

        margin: 0;

        font-size: 14px;

        line-height: 1.7;

        color:
            rgba(255,255,255,.42);
    }


    .ss-footer-bottom > div {

        width: 100%;

        display: flex;

        align-items: flex-start;

        justify-content: flex-start;

        flex-wrap: wrap;

        gap: 8px 20px;
    }


    .ss-footer-bottom a {

        font-size: 14px;

        line-height: 1.6;

        color:
            rgba(255,255,255,.48);

        text-decoration: none;
    }


    .ss-footer-bottom a:hover {

        color: var(--ss-white);
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .ss-footer-inner {

        width: calc(100% - 28px);

        padding: 42px 0 28px;

        grid-template-columns:
            1fr 1fr;

        column-gap: 20px;
    }


    /* BRAND */

    .ss-footer-brand {

        padding-bottom: 30px;

        margin-bottom: 5px;
    }


    .ss-footer-logo .ss-logo-image {

        max-width: 165px;

        max-height: 52px;
    }


    .ss-footer-brand > p {

        font-size: 14px;

        line-height: 1.75;
    }


    /* COLUMNS */

    .ss-footer-column {

        padding:
            18px 0 22px;
    }


    .ss-footer-column h4 {

        margin-bottom: 16px;

        font-size: 14px;
    }


    .ss-footer-column a {

        margin-bottom: 11px;

        font-size: 14px;

        line-height: 1.55;
    }


    /* BOTTOM */

    .ss-footer-bottom {

        width: calc(100% - 28px);

        padding:
            22px 0 25px;

        gap: 14px;
    }


    .ss-footer-bottom p {

        font-size: 14px;
    }


    .ss-footer-bottom > div {

        gap: 8px 16px;
    }


    .ss-footer-bottom a {

        font-size: 14px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 340px) {

    .ss-footer-inner {

        width: calc(100% - 24px);

        display: block;
    }


    .ss-footer-brand {

        padding-bottom: 28px;
    }


    .ss-footer-column {

        padding:
            18px 0;

        border-bottom:
            1px solid
            rgba(255,255,255,.07);
    }


    .ss-footer-column:last-child {

        border-bottom: 0;
    }


    .ss-footer-bottom {

        width: calc(100% - 24px);
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ss-footer *,
    .ss-footer *::before,
    .ss-footer *::after {

        transition: none !important;

        animation: none !important;
    }

}


/* =========================================================
   BACK TO TOP
========================================================= */

.ss-back-to-top {

    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50%;

    background: var(--ss-blue);

    color: var(--ss-white);

    font-size: 14px;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .25s ease;
}


/* SHOW */

.ss-back-to-top.ss-show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* HOVER */

.ss-back-to-top:hover {

    background: var(--ss-blue-dark);

    transform:
        translateY(-4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .ss-back-to-top {

        right: 18px;
        bottom: 18px;

        width: 44px;
        height: 44px;

        font-size: 14px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .ss-back-to-top {

        right: 14px;
        bottom: 14px;

        width: 42px;
        height: 42px;
    }

}