/* My Luxury Choice */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f7;
    color:#222;
}

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

a{
    text-decoration:none;
}

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

/* Header */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

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

.logo{
    font-size:24px;
    font-weight:800;
    color:#111;
}

.call-btn{
    background:#111;
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
}

/* Hero */

.hero{
    padding:25px 0;
}

.hero-box{
    background:#fff;
    border-radius:24px;
    padding:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    text-align:center;
}

.offer{
    display:inline-block;
    background:#ff2b2b;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
}

.hero h1{
    margin-top:15px;
    font-size:38px;
    font-weight:800;
}

.hero p{
    margin:15px 0 20px;
    color:#666;
    line-height:1.8;
}

.hero-img{
    border-radius:20px;
    margin-top:10px;
}

.buy-btn{
    display:block;
    width:100%;
    margin-top:25px;
    background:#0d8a42;
    color:#fff;
    padding:18px;
    border-radius:60px;
    font-size:20px;
    font-weight:700;
    transition:.3s;
}

.buy-btn:hover{
    background:#097235;
}

@media(max-width:768px){

.logo{
    font-size:18px;
}

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

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

.call-btn{
    padding:10px 16px;
    font-size:13px;
}

.buy-btn{
    font-size:18px;
}

}