/*==================================================
                GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #0c6d94;
}

/*==================================================
                MOBILE APP
==================================================*/

.app {
    width: 100%;
    max-width: 430px;
    height: 100vh;
    margin: auto;
    overflow: hidden;
    position: relative;
    background: #0b6d93;
    color: #fff;
}

/*==================================================
                SLIDER PAGE
==================================================*/

#sliderPage {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/*==================================================
                SKIP BUTTON
==================================================*/

.skip-btn {

    position: absolute;

    top: 22px;

    right: 18px;

    z-index: 999;

    border: none;

    outline: none;

    cursor: pointer;

    padding: 10px 18px;

    border-radius: 50px;

    color: #fff;

    font-size: 14px;

    font-weight: 600;

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

    backdrop-filter: blur(18px);

    transition: .3s;

}

.skip-btn:hover {

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

}

/*==================================================
                SLIDES
==================================================*/

.slides {

    width: 300%;

    height: 100%;

    display: flex;

    transition: .55s ease;

}

/* ============================
      NEW MOBILE APP SLIDER
============================ */


#sliderPage {

    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;

}


.app-slides {

    height: 100%;
    width: 100%;
    position: relative;

}



.app-slide {

    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .7s ease,
        visibility .7s ease;

}



.app-slide.active {

    opacity: 1;
    visibility: visible;

}



.slide-bg {

    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

}



.slide-bg::after {

    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(0, 40, 70, .35),
            rgba(0, 70, 100, .45),
            rgba(0, 15, 30, .85));

}



/* BACKGROUND IMAGES */


.bg-one {

    background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=900&q=80"
        );

}



.bg-two {

    background-image: url("https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=900&q=80"
        );

}



.bg-three {

    background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?auto=format&fit=crop&w=900&q=80"
        );

}



/* TEXT AREA */


.slide-content {

    position: relative;

    z-index: 5;

    width: 100%;

    padding: 35px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;


    animation: slideText .8s ease;

}



.app-logo {

    height: 75px;

    width: 75px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;


    font-size: 38px;


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


    backdrop-filter: blur(15px);


    margin-bottom: 40px;


}




.slide-content h1 {


    font-size: 44px;

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1.5px;


    color: white;


    margin-bottom: 20px;


    text-shadow:
        0 8px 25px rgba(0, 0, 0, .5);


}



.slide-content p {


    max-width: 310px;


    font-size: 17px;

    line-height: 1.7;

    font-weight: 400;


    color: white;


    opacity: .95;


}



/* PILLS */


.activity-pills {


    display: flex;

    gap: 10px;

    margin-top: 35px;

    flex-wrap: wrap;

    justify-content: center;


}



.activity-pills span {


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


    padding: 10px 18px;


    border-radius: 50px;


    font-size: 14px;

    font-weight: 500;


    backdrop-filter: blur(15px);


}



/* DOTS */


.slide-dots {


    position: absolute;

    bottom: 35px;

    left: 0;

    width: 100%;


    display: flex;

    justify-content: center;

    gap: 8px;


    z-index: 20;


}



.slide-dots span {


    height: 10px;

    width: 10px;


    border-radius: 50%;


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


    transition: .3s;


}



.slide-dots span.active {


    width: 30px;

    border-radius: 20px;

    background: white;


}



/* ANIMATION */


@keyframes slideText {


    from {

        opacity: 0;

        transform: translateY(40px);

    }


    to {

        opacity: 1;

        transform: translateY(0);

    }


}




@media(max-width:430px) {


    .slide-content {

        padding: 28px;

    }



    .slide-content h1 {

        font-size: 38px;

    }



    .slide-content p {

        font-size: 16px;

    }



    .app-logo {

        margin-bottom: 30px;

    }



}

.brand h3 {

    font-size: 22px;

    font-weight: 700;

    letter-spacing: .5px;

}

/*==================================================
                TITLES
==================================================*/

.content h1 {

    font-size: 42px;

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -1px;

    margin-bottom: 20px;

    text-shadow: 0 10px 25px rgba(0, 0, 0, .35);

}

.content p {

    font-size: 17px;

    font-weight: 400;

    line-height: 1.8;

    opacity: .95;

    max-width: 310px;

}

/*==================================================
                TAGS
==================================================*/

.tags {

    margin-top: 35px;

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

    justify-content: center;

}

.tags span {

    padding: 10px 16px;

    border-radius: 50px;

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

    backdrop-filter: blur(15px);

    font-size: 14px;

    font-weight: 500;

}

/*==================================================
                QUOTE
==================================================*/

.quote {

    margin-top: 40px;

    font-size: 19px;

    font-weight: 600;

    line-height: 1.8;

    opacity: .96;

}

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

.ctaText {

    margin-top: 45px;

    font-size: 24px;

    font-weight: 700;

    letter-spacing: .5px;

}

/*==================================================
                DOTS
==================================================*/

.dots {

    position: absolute;

    bottom: 35px;

    left: 0;

    width: 100%;

    display: flex;

    justify-content: center;

    gap: 10px;

    z-index: 50;

}

.dot {

    width: 11px;

    height: 11px;

    border-radius: 50%;

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

    transition: .35s;

}

.dot.active {

    background: #fff;

    width: 28px;

    border-radius: 20px;

}

/*==================================================
                ANIMATION
==================================================*/

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(35px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==================================================
                FORM PAGE
==================================================*/

#formPage {
    display: none;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, #0c82b3, #075f86, #043d59);
    justify-content: center;
    align-items: center;
    padding: 25px;
}

/*==================================================
                GLASS CARD
==================================================*/

.glassCard {
    width: 100%;
    border-radius: 30px;
    padding: 28px 22px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
    animation: fadeUp .6s ease;
}

/*==================================================
                TOP LOGO
==================================================*/

.topLogo {
    text-align: center;
    margin-bottom: 28px;
}

.circleLogo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(15px);
}

.topLogo h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 8px;
}

.topLogo p {
    font-size: 15px;
    line-height: 1.7;
    opacity: .92;
}

/*==================================================
                FORM
==================================================*/

form {
    width: 100%;
}

input,
select {
    width: 100%;
    height: 54px;
    border: none;
    outline: none;
    margin-bottom: 15px;
    padding: 0 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .95);
    color: #18445d;
    font-size: 15px;
    font-weight: 500;
    transition: .25s;
}

input:focus,
select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

input::placeholder {
    color: #68859a;
}

/*==================================================
                BUTTON
==================================================*/

.startBtn {
    width: 100%;
    height: 56px;
    margin-top: 10px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: #004b63;
    background: #39e0ff;
    transition: .3s;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
}

.startBtn:hover {
    transform: translateY(-2px);
}

.startBtn:active {
    transform: scale(.97);
}

/*==================================================
                POPUP
==================================================*/

.popup {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(3, 35, 55, .94);
    z-index: 9999;
    animation: fadeIn .4s ease;
}

.popupBox {
    width: 90%;
    max-width: 360px;
    text-align: center;
    color: #fff;
    padding: 35px 25px;
}

.successIcon {
    font-size: 70px;
    color: #45ffb2;
    margin-bottom: 20px;
    animation: pop .6s ease;
}

.popupBox h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
}

.popupMain {
    font-size: 17px;
    line-height: 1.8;
    opacity: .96;
}

.popupSmall {
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .75);
}

/*==================================================
                ANIMATIONS
==================================================*/

@keyframes pop {
    0% {
        transform: scale(.3);
        opacity: 0;
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*==================================================
                MOBILE OPTIMISATION
==================================================*/

@media (max-width:430px) {

    .content h1 {
        font-size: 38px;
    }

    .content p {
        font-size: 16px;
    }

    .glassCard {
        padding: 24px 20px;
    }

    .topLogo h2 {
        font-size: 28px;
    }

    .popupBox h1 {
        font-size: 30px;
    }

    .popupMain {
        font-size: 16px;
    }
}

/*==================================================
                REMOVE BLUE HIGHLIGHTS
==================================================*/

button,
input,
select {
    -webkit-tap-highlight-color: transparent;
}

/*==================================================
                SMOOTH TRANSITIONS
==================================================*/

* {
    transition:
        background .25s,
        color .25s,
        border .25s;
}