/*=========================================
Captain Float Design System
Version 1.0
==========================================*/

/* ===========================
Google Font
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'DM Sans',sans-serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;

}

/*=========================================
PRELOADER
=========================================*/

#preloader{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#050505;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
    overflow:hidden;

}

.loader-content{

    text-align:center;

}

/* Logo Animation */

.loader-logo img{

    width:120px;
    margin-bottom:25px;
    animation:floatLogo 2s infinite ease-in-out;

}

@keyframes floatLogo{

    0%,100%{
        transform:translateY(0);
        opacity:1;
    }

    50%{
        transform:translateY(-10px);
        opacity:.7;
    }

}

/* Loader Bar */

.loader-bar{

    width:220px;
    height:2px;
    background:rgba(255,255,255,.1);
    margin:0 auto 15px;
    position:relative;
    overflow:hidden;

}

.loader-progress{

    position:absolute;
    height:100%;
    width:0%;
    background:#ffc402;
    animation:load 2.5s ease forwards;

}

@keyframes load{

    0%{ width:0%; }
    100%{ width:100%; }

}

/* Text */

.loader-content p{

    color:#aaa;
    font-size:14px;
    letter-spacing:1px;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:90%;
    max-width:1400px;
    margin:auto;

}

/* ===========================
Header
=========================== */

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.4s ease;

}

/* Scroll */

.header.sticky{

    background:rgba(0,0,0,.92);

    backdrop-filter:blur(18px);

    /* border-bottom:1px solid rgba(212,175,55,.15); */

}

/* Navbar */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

    transition:.4s;

}

.header.sticky .navbar{

    padding:5px 0;

}

/* Logo */

.logo img{

    width:100px;

}

/* Menu */

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-menu li a{

    color:#fff;

    font-size:15px;

    font-weight:500;

    letter-spacing:.5px;

    transition:.35s;

    position:relative;

}

/* Hover Line */

.nav-menu li a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#ffc402;

    transition:.35s;

}

.nav-menu li a:hover{

    color:#ffc402;

}

.nav-menu li a:hover::after{

    width:100%;

}

/* Active */

.nav-menu li a.active{

    color:#ffc402;

}

/* Button */

.nav-btn{

    padding:14px 30px;

    border-radius:50px;

    border:1px solid #ffc402;

    color:#ffc402;

    font-weight:600;

    transition:.4s;

}

.nav-btn:hover{

    background:#ffc402;

    color:#000;

}


/*==========================
Mobile Navigation
==========================*/

.hamburger{

display:none;

width:20px;

cursor:pointer;

}

.hamburger span{

display:block;

height:3px;

background:#ffc402;

margin:7px 0;

border-radius:20px;

transition:.4s;

}

.mobile-overlay{

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.65);

backdrop-filter:blur(5px);

opacity:0;

visibility:hidden;

transition:.4s;

z-index:9998;

}

.mobile-overlay.active{

opacity:1;

visibility:visible;

}

.mobile-menu{

position:fixed;

right:-360px;

top:0;

width:340px;

height:100%;

background:#090909;

padding:35px;

transition:.45s;

z-index:9999;

display:flex;

flex-direction:column;

justify-content:space-between;

border-left:1px solid rgba(255,196,2,.15);

}

.mobile-menu.active{

right:0;

}

.mobile-top{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:40px;

}

.mobile-top img{

width:90px;

}

.close-menu{

font-size:42px;

color:#fff;

cursor:pointer;

}

.mobile-menu ul li{

margin:25px 0;

}

.mobile-menu ul li a{

font-size:20px;

font-weight:600;

color:#fff;

transition:.35s;

}

.mobile-menu ul li a:hover{

color:#ffc402;

padding-left:10px;

}

.mobile-btn{

display:block;

text-align:center;

padding:18px;

background:#ffc402;

border-radius:60px;

font-weight:700;

color:#000;

}

body.menu-open{

overflow:hidden;

}

/*=========================
 HERO
==========================*/

.hero{

    position:relative;

    width:100%;

    height:110vh;

    display:flex;

    align-items:center;

    overflow:hidden;

   background:black;

}

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(to right,
    rgba(0,0,0,.92),
    rgba(0,0,0,.55),
    rgba(0,0,0,.80));

}

.hero-wrapper{

    position:relative;

    z-index:5;

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:100%;
   

}

.hero-left{
    margin-top: 5%;
    width:50%;

}

.hero-right{

    width:50%;

    display:flex;

    justify-content:flex-end;

    align-items:flex-end;

}

.hero-right img{

    max-width:650px;

    width:100%;

    display: block;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 75%,
        rgba(0,0,0,.8) 85%,
        rgba(0,0,0,.3) 95%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 75%,
        rgba(0,0,0,.8) 85%,
        rgba(0,0,0,.3) 95%,
        transparent 100%
    );

}
.hero-tag{

    display:inline-block;

    color:#ffc402;

    border:1px solid rgba(212,175,55,.4);

    padding:10px 22px;

    border-radius:40px;

    margin-bottom:30px;

    letter-spacing:2px;

    font-size:13px;

}

.hero h1{

    font-size:68px;

    line-height:1.1;

    color:#fff;

    margin-bottom:25px;

    font-weight:700;

}

.hero h1 span{

    color:#ffc402;

}

.hero p{

    color:#cfcfcf;

    font-size:19px;

    line-height:1.9;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:70px;

}

.btn-primary{

    background:#ffc402;

    color:#111;

    padding:18px 38px;

    border-radius:50px;

    font-weight:700;

    transition:.4s;

}

.btn-primary:hover{

    transform:translateY(-5px);

}

.btn-secondary{

    border:1px solid #ffc402;

    color:#fff;

    padding:18px 38px;

    border-radius:50px;

    transition:.4s;

}

.btn-secondary:hover{

    background:#ffc402;

    color:#111;

}

.hero-stats{

    display:flex;

    gap:60px;

}

.hero-stats h3{

    color:#ffc402;

    font-size:38px;

    margin-bottom:8px;

}

.hero-stats span{

    color:#ccc;

}

/*=========================================
PREMIUM WELLNESS
=========================================*/

.wellness{

    padding:100px 0;

    background:#050505;

    position:relative;

    overflow:hidden;

}

/* .wellness::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:radial-gradient(rgba(255,196,2,.12),transparent 70%);

    right:-180px;

    top:-180px;

} */

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}

.section-tag{

    display:inline-block;

    color:#ffc402;

    border:1px solid rgba(255,196,2,.3);

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:25px;

    letter-spacing:2px;

    font-size:13px;

}

.section-title h2{

    font-size:56px;

    margin-bottom:20px;

}

.section-title h2 span{

    color:#ffc402;

}

.section-title p{

    color:#bfbfbf;

    line-height:1.9;

}

.wellness-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

}

.wellness-image{

    flex:1;

}

.wellness-image img{

    width:100%;

    border-radius:30px;

    transition:.5s;

    box-shadow:0 25px 80px rgba(255,196,2,.12);

}

.wellness-image:hover img{

    transform:scale(1.04);

}

.wellness-content{

    flex:1;

}

.service-card{

    display:flex;

    gap:25px;

    padding:28px;

    border:1px solid rgba(255,196,2,.12);

    border-radius:22px;

    margin-bottom:25px;

    background:#111;

    transition:.45s;

}

.service-card:hover{

    transform:translateX(12px);

    border-color:#ffc402;

    box-shadow:0 20px 50px rgba(255,196,2,.12);

}

.service-number{

    min-width:65px;

    height:65px;

    background:#ffc402;

    color:#000;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:bold;

}

.service-card h3{

    font-size:28px;

    margin-bottom:10px;

}

.service-card p{

    color:#bfbfbf;

    line-height:1.8;

}

.explore-btn{

    display:inline-block;

    margin-top:20px;

    color:#ffc402;

    font-size:18px;

    font-weight:600;

    transition:.3s;

}

.explore-btn:hover{

    letter-spacing:1px;

}


/*=========================================
CAPTAIN FLOAT STORY
=========================================*/

.story{

    padding:100px 0;

    background:#000;

    position:relative;

    overflow:hidden;

}

.story::before{

    content:"";

    position:absolute;

    left:-220px;

    top:120px;

    width:450px;

    height:450px;

    background:radial-gradient(rgba(255,196,2,.10),transparent 70%);

}

.story-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:90px;

}

.story-image img{

    flex:1;

    position:relative;

}

.story-glow{

    position:absolute;

    width:100%;

    height:100%;

    background:radial-gradient(rgba(255,196,2,.18),transparent 70%);

    filter:blur(40px);

    z-index:0;

}

.story_btn{
   display: flex;
  justify-content: center;
}

.story-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:520px;

    display:block;

    margin:auto;

    transition:.5s;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, .8) 85%, rgba(0, 0, 0, .3) 95%, transparent 100%);

}

.story-image:hover img{

    transform:translateY(-10px) scale(1.03);

}

.story-content{

    flex:60%;

}

.story-content video{
    border-radius: 10px;
}
.story-content h2{

    font-size:54px;

    color:#fff;

    margin:18px 0 25px;

    line-height:1.2;

}

.story-content h2 span{

    color:#ffc402;

}

.story-intro{

    color:#bfbfbf;

    line-height:1.9;

    font-size:17px;

    margin-bottom:45px;

}

.story-cards{

    display:grid;

    gap:22px;

}

.story-card{

    padding:28px;

    background:#111;

    border:1px solid rgba(255,196,2,.12);

    border-radius:20px;

    transition:.4s;

}

.story-card:hover{

    border-color:#ffc402;

    transform:translateX(12px);

    box-shadow:0 20px 50px rgba(255,196,2,.10);

}

.story-card h3{

    color:#ffc402;

    margin-bottom:12px;

    font-size:24px;

}

.story-card p{

    color:#cfcfcf;

    line-height:1.8;

}

.story-btn{

    display:inline-block;

    margin-top:45px;

    padding:18px 38px;

    background:#ffc402;

    color:#111;

    border-radius:50px;

    font-weight:700;

    transition:.4s;

}

.story-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(255,196,2,.25);

}

/*=========================================
DUALITY CINEMATIC
=========================================*/

.duality{
    position: relative;
    padding: 100px 0 50px;
    background: #050505;
    overflow: hidden;
}

/* .duality::before{
    content: "";
    position: absolute;
    top: -250px;
    right: -180px;
    width: 600px;
    height: 600px;
    background: rgba(255,196,2,.08);
    filter: blur(140px);
    border-radius: 50%;
} */

/* .duality::after{
    content: "";
    position: absolute;
    bottom: -250px;
    left: -180px;
    width: 500px;
    height: 500px;
    background: rgba(255,196,2,.05);
    filter: blur(120px);
    border-radius: 50%;
} */

.duality-bg{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top,#3d2d08 0%,transparent 45%);
    opacity:.25;
}

.duality .container{
    position:relative;
    z-index:2;
}

/*==========================
Heading
==========================*/

.duality-title{
    text-align:center;
    max-width:850px;
    margin:0 auto 120px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(255,196,2,.3);
    border-radius:40px;
    color:#ffc402;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:25px;
}

.duality-title h2{
    font-size:68px;
    color:#fff;
    margin-bottom:25px;
    line-height:1.1;
}

.duality-title h2 span{
    color:#ffc402;
}

.duality-title p{
    color:#bfbfbf;
    font-size:19px;
    line-height:1.9;
}

/*==========================
Timeline
==========================*/

.timeline{
    position:relative;
    max-width:1200px;
    margin:auto;
}

.timeline-line{
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);
    width:3px;
    height:100%;
    background:linear-gradient(
        to bottom,
        transparent,
        #ffc402,
        transparent
    );
}

.timeline-item{
    position:relative;
    width:50%;
    padding:40px 70px;
    margin-bottom:80px;
}

.timeline-item.left{
    left:0;
}

.timeline-item.right{
    left:50%;
}

.timeline-content{
    position:relative;
    padding:45px;
    border-radius:28px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,196,2,.15);
    transition:.45s;
}

.timeline-content:hover{
    transform:translateY(-12px);
    border-color:#ffc402;
    box-shadow:0 25px 70px rgba(255,196,2,.15);
}

.step-number{
    display:inline-block;
    font-size:14px;
    color:#ffc402;
    letter-spacing:3px;
    margin-bottom:20px;
}

.timeline-content h3{
    font-size:34px;
    color:#fff;
    margin-bottom:20px;
}

.timeline-content p{
    color:#bfbfbf;
    line-height:1.9;
    font-size:16px;
}

/*==========================
Timeline Dot
==========================*/

.timeline-item::before{
    content:"";
    position:absolute;
    top:70px;
    width:20px;
    height:20px;
    background:#ffc402;
    border-radius:50%;
    box-shadow:0 0 25px #ffc402;
    z-index:5;
}

.timeline-item.left::before{
    right:-10px;
}

.timeline-item.right::before{
    left:-10px;
}

/*==========================
Bottom Quote
==========================*/

.duality-quote{
    margin-top:120px;
    text-align:center;
}

.duality-quote h3{
    font-size:48px;
    color:#fff;
    max-width:900px;
    margin:auto;
    line-height:1.4;
    margin-bottom:40px;
}

.duality-quote .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/*==========================
Hover Glow
==========================*/

.timeline-content::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:28px;
    background:linear-gradient(
        135deg,
        rgba(255,196,2,.12),
        transparent 60%
    );
    opacity:0;
    transition:.4s;
}

.timeline-content:hover::before{
    opacity:1;
}

/*=========================================
JOURNEY V2
=========================================*/

.journey-v2{

    position:relative;
    padding:50px 0 ;
    background:#050505;
    overflow:hidden;

}

/* Background Glow */

.journey-v2::before{

    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#ffc40215 0%,transparent 70%);
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    filter:blur(90px);

}

.journey-title{

    max-width:850px;
    margin:auto;
    text-align:center;
    margin-bottom:120px;
    position:relative;
    z-index:5;

}

.journey-title h2{

    font-size:58px;
    margin:20px 0;

}

.journey-title h2 span{

    color:#ffc402;

}

.journey-title p{

    max-width:720px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#bfbfbf;

}



/*=====================
CIRCLE
=====================*/

.journey-circle{

    width:760px;
    height:760px;

    margin:auto;

    position:relative;

}



/* Golden Ring */

.journey-circle::before{

    content:"";

    position:absolute;

    inset:90px;

    border:2px dashed rgba(255,196,2,.25);

    border-radius:50%;

}



/*=====================
CENTER
=====================*/

.center-logo{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:180px;

    height:180px;

    border-radius:50%;

    background:#111;

    border:2px solid #ffc402;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 0 60px rgba(255,196,2,.25);

}

.center-logo img{

    width:95px;

}



/*=====================
CARDS
=====================*/

.orbit-card{

    position:absolute;

    width:230px;

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,196,2,.15);

    border-radius:25px;

    padding:30px;

    transition:.45s;

    text-align:center;

}

.orbit-card span{

    width:55px;

    height:55px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:auto;

    border-radius:50%;

    background:#ffc402;

    color:#000;

    font-weight:700;

    margin-bottom:20px;

}

.orbit-card h3{

    font-size:23px;

    color:#fff;

    line-height:1.4;

}



/* Hover */

.orbit-card:hover{

    transform:translateY(-12px) scale(1.05);

    border-color:#ffc402;

    box-shadow:0 0 40px rgba(255,196,2,.18);

}



/*=====================
POSITIONS
=====================*/

.card1{

    top:-10px;

    left:50%;

    transform:translateX(-50%);

}

.card2{

    right:-10px;

    top:50%;

    transform:translateY(-50%);

}

.card3{

    bottom:-10px;

    left:50%;

    transform:translateX(-50%);

}

.card4{

    left:-10px;

    top:50%;

    transform:translateY(-50%);

}

.story-image{

    min-height:650px;

}

.story-image video{

    width:100%;
    height:100%;
  
}

/*=========================================
FOUNDER
=========================================*/

.founder{

    position:relative;
    padding:100px 0;
    background:black;
    overflow:hidden;

}

/*=========================
Background Glow
==========================*/



.founder-header{

    text-align:center;
    max-width:760px;
    margin:auto;
    position:relative;
    z-index:2;

}

.founder-header h2{

    font-size:68px;
    color:#fff;
    margin:20px 0 10px;

}

.founder-header h2 span{
    color: #ffc402;
}

.founder-header p{

    color:#ffc402;
    font-size:22px;
    letter-spacing:1px;

}

/*=========================
Image
==========================*/

.founder-image{

    display:flex;
    justify-content:center;
    margin:0px 0 70px;
    position:relative;
    z-index:2;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, .8) 85%, rgba(0, 0, 0, .3) 95%, transparent 100%);

}

.founder-image img{

    width:100%;
    max-width:520px;
    transition:.5s ease;
    filter:drop-shadow(0 30px 60px rgba(0,0,0,.5));

}

.founder-image img:hover{

    transform:translateY(-10px) scale(1.03);

}

/*=========================
Content
==========================*/

.founder-content{

    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
    position:relative;
    z-index:2;

}

.founder-content p{

    font-size:18px;
    color:#cfcfcf;
    line-height:2;

}

/*=========================
Companies
==========================*/

.founder-companies{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:35px;
    margin-bottom:80px;
    position:relative;
    z-index:2;

}

.company-card{

    width:380px;
    padding:40px;
    border-radius:28px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,196,2,.18);
    transition:.4s;

}

.company-card:hover{

    transform:translateY(-10px);
    border-color:#ffc402;
    box-shadow:0 20px 50px rgba(255,196,2,.12);

}

.company-card h3{

    color:#fff;
    font-size:28px;
    margin-bottom:10px;

}

.company-card span{

    color:#ffc402;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:20px;

}

.company-card p{

    color:#bfbfbf;
    line-height:1.8;

}

/*=========================
Center Icon
==========================*/

.vision-icon{

    width:90px;
    height:90px;
    border-radius:50%;
    background:#111;
    border:2px solid #ffc402;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#ffc402;
    font-size:34px;
    box-shadow:0 0 35px rgba(255,196,2,.25);

}

/*=========================
Quote
==========================*/

.founder-quote{

    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;

}

.founder-quote h3{

    font-size:34px;
    font-family:'Cormorant Garamond',serif;
    color:#fff;
    line-height:1.5;
    font-style:italic;

}

/*=========================================
ONE VISION
=========================================*/

.connection{

    position:relative;
    padding:100px 0;
    background:linear-gradient(180deg,#050505,#0b0b0b);
    overflow:hidden;

}

/* Background Glow */

.connection::before{

    content:"";
    position:absolute;
    width:650px;
    height:650px;
    left:50%;
    top:45%;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle,rgba(255,196,2,.08),transparent 70%);
    filter:blur(90px);

}

.connection-header{

    max-width:820px;
    margin:auto;
    text-align:center;
    margin-bottom:100px;
    position:relative;
    z-index:2;

}

.connection-header h2{

    font-size:62px;
    color:#fff;
    line-height:1.15;
    margin:20px 0;

}

.connection-header h2 span{

    color:#ffc402;

}

.connection-header p{

    color:#c5c5c5;
    line-height:1.9;
    font-size:18px;

}

/*======================
FLOW
======================*/

.vision-flow{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;
    position:relative;
    z-index:2;

}

.vision-box{

    width:340px;
    padding:45px;
    border-radius:28px;
    text-align:center;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(16px);

    border:1px solid rgba(255,196,2,.18);

    transition:.45s;

}

.vision-box:hover{

    transform:translateY(-10px);

    border-color:#ffc402;

    box-shadow:0 25px 55px rgba(255,196,2,.12);

}

.vision-box h3{

    font-size:30px;
    margin-bottom:12px;

}

.vision-box span{

    color:#ffc402;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;

}

/*======================
CENTER
======================*/

.vision-middle{

    display:flex;
    flex-direction:column;
    align-items:center;

}

.vision-line{

    width:2px;
    height:90px;
    background:linear-gradient(#ffc402,transparent);

}

.vision-circle{

    width:170px;
    height:170px;

    border-radius:50%;

    background:#111;

    border:2px solid #ffc402;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#ffc402;

    font-weight:700;

    letter-spacing:2px;

    box-shadow:0 0 45px rgba(255,196,2,.25);

    animation:pulseVision 3s infinite;

}

@keyframes pulseVision{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

}

/*======================
BOTTOM
======================*/

.connection-footer{

    max-width:760px;
    margin:90px auto 0;
    text-align:center;
    position:relative;
    z-index:2;

}

.connection-footer p{

    color:#bfbfbf;
    font-size:18px;
    line-height:1.9;
    margin-bottom:35px;

}


/*=========================================
FINAL CTA
=========================================*/

.final-cta{

    position:relative;
    padding:100px 0;
    overflow:hidden;
    text-align:center;
    background:black;

}

/*=========================
Glow
==========================*/

.cta-glow{

    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);

    width:700px;
    height:700px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(255,196,2,.14),
    transparent 70%);

    filter:blur(90px);

    pointer-events:none;

}

/*=========================
Content
==========================*/

.final-cta .container{

    position:relative;
    z-index:2;
    max-width:900px;

}

.final-cta h2{

    font-size:68px;
    color:#fff;
    line-height:1.15;
    margin:25px 0;

}

.final-cta h2 span{

    color:#ffc402;

}

.final-cta p{

    color:#c8c8c8;
    font-size:19px;
    line-height:1.9;
    max-width:760px;
    margin:0 auto 55px;

}

/*=========================
Buttons
==========================*/

.cta-buttons{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:22px;

}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary{

    min-width:240px;
    text-align:center;

}

/*=========================
Hover
==========================*/

.cta-buttons .btn-primary:hover{

    box-shadow:0 15px 40px rgba(255,196,2,.35);

}

.cta-buttons .btn-secondary:hover{

    box-shadow:0 15px 40px rgba(255,196,2,.18);

}

/*=========================================
FOOTER
=========================================*/

.footer{

    background:#050505;

    border-top:1px solid rgba(255,196,2,.15);

    padding:90px 0 30px;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-brand img{

    width:110px;

    margin-bottom:25px;

}

.footer-brand p{

    color:#bdbdbd;

    line-height:1.9;

    max-width:420px;

}

.footer-links h4{

    color:#fff;

    margin-bottom:25px;

    font-size:20px;

}

.footer-links ul{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-links a{

    color:#bdbdbd;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffc402;

    padding-left:8px;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    color:#8f8f8f;

    font-size:14px;

}

.nav-menu a.active,
.mobile-menu a.active{

    color:#ffc402;

}
