/* 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;
}

body{
    background:#ffffff;
    overflow-x:hidden;
}

/* ===========================
   HEADER
=========================== */

.topbar{

    height:80px;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 35px;

    box-shadow:0 1px 8px rgba(0,0,0,.08);
}

.menu{
    font-size:30px;
    cursor:pointer;
}

.logo-container{

    display:flex;
    align-items:center;
    gap:14px;
}

.logo{

    width:52px;
    height:52px;

    border-radius:50%;

    background:#1636cc;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;
    font-weight:700;
}

.logo-container h2{

    font-size:22px;
    font-weight:700;

    color:#1636cc;
}

.buttons{

    display:flex;
    gap:15px;
}

.login-btn,
.signup-btn{

    width:105px;
    height:46px;

    border-radius:8px;

    font-size:17px;
    font-weight:600;

    cursor:pointer;
}

.login-btn{

    background:#fff;
    border:2px solid #d9d9d9;
}

.signup-btn{

    background:#1d46ff;
    color:#fff;
    border:none;
}

/* ===========================
   HERO
=========================== */

.hero{

    position:relative;

    min-height:620px;

    background:#1235c8;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

.content{

    text-align:center;
    z-index:5;
}

.content h1{

    color:#fff;

    font-size:58px;
    line-height:1.18;

    font-weight:700;
}
.separator{

    width:80px;
    height:4px;

    background:white;

    margin:28px auto 0;

    border-radius:10px;
}
.content p{

    color:#fff;

    margin-top:28px;

    font-size:20px;
    font-weight:400;
}

.search-box{

    margin-top:50px;

    display:flex;
    justify-content:center;
    gap:14px;
}

.search-box input{

    width:500px;
    height:56px;

    border:none;

    border-radius:8px;

    padding:0 22px;

    font-size:20px;
}

.search-box button{

    width:165px;
    height:56px;

    border:none;

    border-radius:8px;

    background:#3558ff;

    color:#fff;

    font-size:20px;
    font-weight:600;

    cursor:pointer;

    transition:.25s;
}

.search-box button:hover{

    background:#2549ef;
}

/* ===========================
   DECORATION
=========================== */

.coin{

    position:absolute;

    width:115px;

    opacity:.95;
}

.coin1{

    left:-25px;
    top:170px;
}

.coin2{

    right:35px;
    top:85px;
}

.coin3{

    right:55px;
    bottom:60px;
}

/*==========================
        FOOTER
===========================*/

.footer{

    background:#07184f;

    color:white;

    padding:70px 8% 20px;
}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.2fr;

    gap:60px;
}

.footer-column{

    display:flex;

    flex-direction:column;
}

.footer-logo{

    font-size:38px;

    margin-bottom:20px;
}

.footer-column p{

    color:#d5d9ff;

    line-height:1.8;

    margin-bottom:30px;
}

.footer-column h3{

    margin-bottom:25px;

    font-size:24px;
}

.footer-column a{

    color:white;

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;
}

.footer-column a:hover{

    color:#7fa6ff;
}

.socials{

    display:flex;

    gap:15px;
}

.socials a{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#2044d8;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:20px;

    transition:.3s;
}

.socials a:hover{

    transform:translateY(-5px);

    background:#3e64ff;
}

.qr{

    width:140px;

    margin-bottom:20px;

    border-radius:10px;
}

.stores{

    display:flex;

    flex-direction:column;

    gap:12px;
}

.stores img{

    width:180px;

    cursor:pointer;

    transition:.3s;
}

.stores img:hover{

    transform:scale(1.05);
}

.copyright{

    border-top:1px solid rgba(255,255,255,.15);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#cfd5ff;
}

/*==========================
     Responsive
===========================*/

@media(max-width:1000px){

.footer-container{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:700px){

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

.socials{

justify-content:center;

}

.stores{

align-items:center;

}

}
/*============================
APPLICATION
=============================*/

.app-section{

    background:#f7f7f7;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:90px 8%;

    gap:60px;

    flex-wrap:wrap;
}

.app-left{

    flex:1;

    min-width:320px;
}

.app-left h2{

    font-size:48px;

    font-weight:700;

    color:#111;

    line-height:1.2;
}

.app-left p{

    margin-top:25px;

    font-size:20px;

    color:#555;

    line-height:1.8;
}

.store-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.store-buttons img{

    height:60px;

    transition:.3s;
}

.store-buttons img:hover{

    transform:scale(1.05);
}

.app-right{

    flex:1;

    display:flex;

    justify-content:center;

    min-width:350px;
}

.app-right img{

    width:430px;

    max-width:100%;
}