/*=========================================
  MEDI HEALTH WEBSITE
  STYLE.CSS - PART 1
==========================================*/

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

/*=========================================
RESET
=========================================*/

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#333;
    background:#f7fbff;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

section{
    padding:90px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/*=========================================
ROOT COLORS
=========================================*/

:root{
    --primary:#0077ff;
    --secondary:#00b7ff;
    --dark:#16355b;
    --light:#ffffff;
    --grey:#6c757d;
    --bg:#f5fbff;
    --border:#e8eef5;
    --shadow:0 12px 35px rgba(0,0,0,.08);
    --radius:18px;
    --transition:.35s ease;
}

/*=========================================
COMMON
=========================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:var(--dark);
    margin-bottom:12px;
}

.section-title p{
    color:var(--grey);
    font-size:17px;
}

/*=========================================
BUTTONS
=========================================*/

.primary-btn{
    display:inline-block;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:15px 34px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
    box-shadow:0 15px 30px rgba(0,119,255,.25);
}

.primary-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 35px rgba(0,119,255,.35);
}

.secondary-btn{
    display:inline-block;
    padding:15px 34px;
    border-radius:50px;
    border:2px solid white;
    color:white;
    font-weight:600;
    transition:var(--transition);
}

.secondary-btn:hover{
    background:white;
    color:var(--primary);
}

/*=========================================
HEADER
=========================================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(14px);
    box-shadow:0 5px 18px rgba(0,0,0,.05);
    transition:.3s;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:90px;
}

.logo img{
    height:70px;
    width:auto;
}

.navbar{
    display:flex;
    gap:32px;
}

.navbar a{
    color:var(--dark);
    font-weight:600;
    position:relative;
    transition:.3s;
}

.navbar a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:var(--primary);
    transition:.3s;
}

.navbar a:hover::after{
    width:100%;
}

.navbar a:hover{
    color:var(--primary);
}

.header-buttons{
    display:flex;
    gap:15px;
}

.call-btn{
    background:#edf7ff;
    padding:12px 22px;
    border-radius:40px;
    font-weight:600;
    color:var(--dark);
    transition:.3s;
}

.call-btn:hover{
    background:var(--primary);
    color:white;
}

.whatsapp-btn{
    background:#25d366;
    color:white;
    padding:12px 22px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
}

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

.hero{
    position:relative;
    padding-top:180px;
    padding-bottom:100px;
    background:linear-gradient(135deg,#eef7ff,#ffffff);
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#d8ecff;
    right:-180px;
    top:-180px;
}

.hero::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:#dff5ff;
    left:-120px;
    bottom:-120px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
}

.hero-tag{
    display:inline-block;
    padding:8px 20px;
    background:#dff2ff;
    color:var(--primary);
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero h1{
    font-size:58px;
    line-height:1.15;
    color:var(--dark);
    margin-bottom:25px;
}

.hero p{
    font-size:18px;
    color:var(--grey);
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.hero-right img{
    border-radius:25px;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
    animation:floatImage 4s ease-in-out infinite;
}

/*=========================================
FEATURE BOXES
=========================================*/

.hero-features{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-features div{
    background:white;
    padding:16px 22px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:var(--shadow);
    transition:.3s;
}

.hero-features div:hover{
    transform:translateY(-8px);
}

.hero-features i{
    font-size:22px;
    color:var(--primary);
}

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

@keyframes floatImage{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-14px); }
    100%{ transform:translateY(0px); }
}

/*=========================================
ABOUT SECTION
=========================================*/

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    border-radius:25px;
    box-shadow:var(--shadow);
}

.about-content h3{
    font-size:34px;
    color:var(--dark);
    margin-bottom:20px;
}

.about-content p{
    color:var(--grey);
    margin-bottom:25px;
}

.about-content ul{
    margin-bottom:35px;
}

.about-content li{
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:500;
}

.about-content li i{
    color:#0abf53;
    font-size:20px;
}

/*=========================================
STATISTICS
=========================================*/

.stats{
    background:linear-gradient(135deg,#0077ff,#00b7ff);
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    text-align:center;
    padding:40px 25px;
    border-radius:20px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.18);
}

.stat-card h2{
    font-size:46px;
    margin-bottom:10px;
}

.stat-card p{
    font-size:18px;
}

/*=========================================
PACKAGES
=========================================*/

.packages{
    background:#f8fbff;
}

.package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.package-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.35s;
}

.package-card:hover{
    transform:translateY(-10px);
}

/* FIXED PACKAGE IMAGE SIZE
   Full image is visible without cropping.
   Desktop: 220px high
*/
.package-card img{
    width:100%;
    height:220px;
    object-fit:contain;
    object-position:center;
    background:#f5faff;
    display:block;
    transition:.5s;
}

/* Prevent the hover zoom from cutting the image */
.package-card:hover img{
    transform:none;
}

.package-content{
    padding:28px;
}

.package-content h3{
    color:var(--dark);
    font-size:26px;
    margin-bottom:12px;
}

.package-content p{
    color:var(--grey);
    margin-bottom:20px;
}

.package-content button{
    width:100%;
    border:none;
    cursor:pointer;
    padding:15px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    transition:.3s;
}

.package-content button:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(0,119,255,.25);
}

/*=========================================
PACKAGE DESCRIPTION
=========================================*/

.description{
    display:none;
    margin-top:20px;
    padding:18px;
    border-radius:15px;
    background:#eef7ff;
    border-left:5px solid var(--primary);
}

.description.active{
    display:block;
    animation:fadeIn .4s ease;
}

.description ul{
    padding-left:20px;
}

.description li{
    list-style:disc;
    margin-bottom:10px;
    color:#444;
}

/*=========================================
SECTION BACKGROUND
=========================================*/

.packages::before{
    content:"";
    display:block;
    width:80px;
    height:5px;
    margin:0 auto 50px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
}

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

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*=========================================
WHY CHOOSE US
=========================================*/

.why-us{
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.why-card{
    background:#fff;
    border-radius:20px;
    padding:35px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s ease;
    border:1px solid var(--border);
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:var(--primary);
}

.why-card i{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:34px;
}

.why-card h3{
    font-size:24px;
    color:var(--dark);
    margin-bottom:12px;
}

.why-card p{
    color:var(--grey);
}

/*=========================================
HOW IT WORKS
=========================================*/

.how-it-works{
    background:#f7fbff;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.step{
    background:#fff;
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    position:relative;
    box-shadow:var(--shadow);
    transition:.35s;
}

.step:hover{
    transform:translateY(-10px);
}

.step span{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.step h3{
    color:var(--dark);
    margin-bottom:15px;
    font-size:24px;
}

.step p{
    color:var(--grey);
}

/*=========================================
BOOKING
=========================================*/

.booking{
    background:linear-gradient(135deg,#eef7ff,#ffffff);
}

.booking-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.booking-left{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:60px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.booking-left h2{
    font-size:42px;
    margin-bottom:20px;
}

.booking-left p{
    font-size:17px;
    margin-bottom:35px;
    opacity:.95;
}

.booking-left img{
    width:180px;
}

.booking-right{
    padding:50px;
}

.booking-right form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.booking-right input,
.booking-right textarea,
.booking-right select{
    width:100%;
    padding:16px 18px;
    border:1px solid #dce6ef;
    border-radius:12px;
    outline:none;
    font-size:16px;
    transition:.3s;
    font-family:'Poppins',sans-serif;
}

.booking-right input:focus,
.booking-right textarea:focus,
.booking-right select:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(0,119,255,.12);
}

.booking-right textarea{
    resize:vertical;
    min-height:130px;
}

.booking-right button{
    border:none;
    cursor:pointer;
    font-size:17px;
}

.booking-right input::placeholder,
.booking-right textarea::placeholder{
    color:#8a8a8a;
}

.booking-wrapper:hover{
    box-shadow:0 35px 70px rgba(0,0,0,.12);
}

/*=========================================
TESTIMONIALS
=========================================*/

.testimonials{
    background:#f8fbff;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.35s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.stars{
    color:#ffc107;
    font-size:22px;
    margin-bottom:18px;
}

.testimonial-card p{
    color:var(--grey);
    margin-bottom:20px;
}

.testimonial-card h4{
    color:var(--dark);
}

.testimonial-card span{
    color:var(--primary);
    font-size:14px;
}

/*=========================================
FAQ
=========================================*/

.faq{
    background:#fff;
}

.faq-item{
    background:#fff;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    text-align:left;
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    color:var(--dark);
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
    color:var(--grey);
}

.faq-item.active .faq-answer{
    display:block;
}

/*=========================================
CONTACT
=========================================*/

.contact{
    background:#f7fbff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.contact-info h3{
    color:var(--dark);
    font-size:30px;
    margin-bottom:25px;
}

.contact-info p{
    margin-bottom:18px;
    color:var(--grey);
}

.contact-info i{
    color:var(--primary);
    width:25px;
}

.contact-map iframe{
    border-radius:20px;
    box-shadow:var(--shadow);
}

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

footer{
    background:#0f2744;
    color:#fff;
    padding:70px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
    margin-bottom:35px;
}

.footer-grid img{
    width:180px;
    margin-bottom:20px;
}

.footer-grid h3{
    margin-bottom:20px;
}

.footer-grid ul li{
    margin-bottom:12px;
}

.footer-grid a{
    color:#ddd;
    transition:.3s;
}

.footer-grid a:hover{
    color:#fff;
    padding-left:5px;
}

footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:25px 0;
}

footer>div>p{
    text-align:center;
    color:#ccc;
}

/*=========================================
FLOATING WHATSAPP
=========================================*/

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 12px 25px rgba(0,0,0,.25);
    z-index:999;
    animation:whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.12);}
    100%{transform:scale(1);}
}

/*=========================================
BACK TO TOP
=========================================*/

#topBtn{
    position:fixed;
    right:30px;
    bottom:100px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    display:none;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:20px;
    box-shadow:var(--shadow);
    transition:.3s;
    z-index:998;
}

#topBtn:hover{
    transform:translateY(-5px);
}

/*=========================================
PREMIUM EFFECTS & UTILITIES
=========================================*/

.fade-up{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-50px);
    transition:all .8s ease;
}

.fade-left.show{
    opacity:1;
    transform:translateX(0);
}

.fade-right{
    opacity:0;
    transform:translateX(50px);
    transition:all .8s ease;
}

.fade-right.show{
    opacity:1;
    transform:translateX(0);
}

.zoom{
    opacity:0;
    transform:scale(.85);
    transition:all .7s ease;
}

.zoom.show{
    opacity:1;
    transform:scale(1);
}

.glass{
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.25);
}

.shadow-sm{
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.shadow{
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.shadow-lg{
    box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.rounded{
    border-radius:15px;
}

.rounded-lg{
    border-radius:25px;
}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.text-center{
    text-align:center;
}

.text-white{
    color:#fff;
}

.text-primary{
    color:var(--primary);
}

.bg-primary{
    background:var(--primary);
}

.bg-light{
    background:#f8fbff;
}

/* Global image transition without hover scaling */
img{
    transition:.45s;
}

/* Button Ripple Feel */
.primary-btn,
.secondary-btn,
.call-btn,
.whatsapp-btn{
    position:relative;
    overflow:hidden;
}

.primary-btn::before,
.secondary-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.25);
    transition:.5s;
}

.primary-btn:hover::before,
.secondary-btn:hover::before{
    left:120%;
}

.package-card,
.stat-card,
.step,
.why-card,
.testimonial-card{
    will-change:transform;
}

/* Loading Spinner */
.loader{
    position:fixed;
    inset:0;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader::after{
    content:"";
    width:60px;
    height:60px;
    border:6px solid #e6eef9;
    border-top-color:var(--primary);
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    to{transform:rotate(360deg);}
}

/* Custom Scrollbar */
::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#eef4fb;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(var(--primary),var(--secondary));
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#005fd1;
}

::selection{
    background:var(--primary);
    color:#fff;
}

input:focus,
textarea:focus,
select:focus,
button:focus{
    outline:none;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-features{
        justify-content:center;
    }

    .header-buttons{
        display:none;
    }

    .navbar{
        gap:18px;
    }

    .hero h1{
        font-size:42px;
    }

    .about-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .about-content ul{
        display:inline-block;
        text-align:left;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .steps{
        grid-template-columns:repeat(2,1fr);
    }

    .booking-wrapper{
        grid-template-columns:1fr;
    }

    .booking-left{
        text-align:center;
        align-items:center;
    }

    .booking-left img{
        margin-top:20px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-grid img{
        margin:auto;
        margin-bottom:20px;
    }
}

@media(max-width:768px){

    .header-container{
        height:80px;
    }

    .navbar{
        display:none;
    }

    .section-title h2{
        font-size:32px;
    }

    .hero{
        padding-top:140px;
    }

    .hero h1{
        font-size:34px;
    }

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

    .package-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .about-content h3{
        font-size:28px;
    }

    .package-content h3{
        font-size:22px;
    }

    .stat-card h2{
        font-size:36px;
    }

    .steps{
        grid-template-columns:1fr;
    }

    .booking-left{
        padding:40px 30px;
    }

    .booking-right{
        padding:35px 25px;
    }

    .booking-left h2{
        font-size:32px;
    }

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .contact-info{
        padding:30px;
    }

    .faq-question{
        font-size:16px;
        padding:18px;
    }

    .floating-whatsapp{
        width:55px;
        height:55px;
        font-size:26px;
    }

    #topBtn{
        width:48px;
        height:48px;
    }

    /* Mobile package image */
    .package-card img{
        width:100%;
        height:200px;
        object-fit:contain;
        object-position:center;
        background:#f5faff;
    }
}

@media(max-width:576px){

    .container{
        width:92%;
    }

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

    .section-title h2{
        font-size:28px;
    }

    .primary-btn,
    .secondary-btn{
        display:block;
        width:100%;
        text-align:center;
        margin-bottom:15px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-features{
        flex-direction:column;
    }

    .package-card img{
        width:100%;
        height:190px;
        object-fit:contain;
        object-position:center;
    }

    .booking-left img{
        width:140px;
    }
}

@media(min-width:1400px){

    .container{
        max-width:1320px;
    }

    .hero h1{
        font-size:64px;
    }

    .section-title h2{
        font-size:48px;
    }
}

@media print{

    .header,
    .floating-whatsapp,
    #topBtn,
    footer{
        display:none;
    }

    body{
        background:#fff;
        color:#000;
    }
}

/*=========================================
END OF STYLE.CSS
=========================================*/

/*=========================================
  MEDI HEALTH MOVING BIKE HERO
=========================================*/

.hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 680px;
    overflow: hidden;
    line-height: 0;
}

/* Main stationary image */
.hero-visual .hero-static {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
    animation: none;
}

/* Moving bike/rider */
.hero-visual .hero-bike {
    position: absolute;
    left: 35.5%;
    top: 40%;
    width: 63.8%;
    height: auto;

    display: block;
    border-radius: 0;
    box-shadow: none;

    z-index: 2;
    pointer-events: none;

    animation: bikeRide 3.8s ease-in-out infinite;
}

/* Bike movement */
@keyframes bikeRide {

    0% {
        transform: translateX(-18px);
    }

    25% {
        transform: translateX(0px) translateY(-3px);
    }

    50% {
        transform: translateX(22px);
    }

    75% {
        transform: translateX(0px) translateY(-3px);
    }

    100% {
        transform: translateX(-18px);
    }
}


/*=========================================
  TABLET
=========================================*/

@media(max-width:991px) {

    .hero-visual {
        max-width: 620px;
    }

    .hero-visual .hero-bike {
        left: 35.5%;
        top: 40%;
        width: 63.8%;
    }

}


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

@media(max-width:768px) {

    .hero-visual {
        max-width: 520px;
    }

    .hero-visual .hero-bike {
        left: 35.5%;
        top: 40%;
        width: 63.8%;
        animation-duration: 4.2s;
    }

}


/*=========================================
  REDUCE MOTION
=========================================*/

@media(prefers-reduced-motion: reduce) {

    .hero-visual .hero-bike {
        animation: none;
    }

}
