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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f7fb;
    color:#1f2937;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:100%;
    max-width:2000px;
    margin:auto;
    padding:0 24px;
}

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

.header{
    position:sticky;
    top:0;
    left:0;
    z-index:9999;
    background:#fff;
    box-shadow:0 2px 18px rgba(0,0,0,.06);
}

/*=========================================
TOP NAVBAR
=========================================*/

.top-navbar{

    background:#fff;
    height:78px;
    border-bottom:1px solid #ececec;

}

.nav-wrapper{

    display:flex;
    justify-content:space-between;
    align-items:center;
    height:78px;

}

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

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{

    width:42px;

}

.logo span{

    font-size:38px;
    font-weight:800;
    color:#20B2AA;

}

/*=========================================
MENU
=========================================*/

.main-menu{

    display:flex;
    align-items:center;
    gap:36px;

}

.main-menu>li{

    position:relative;

}

.main-menu>li>a{

    font-size:17px;
    font-weight:600;
    color:#222;
    transition:.25s;

}

.main-menu>li>a:hover{

    color:#20B2AA;

}

/*=========================================
SEARCH
=========================================*/

.nav-right{

    display:flex;
    align-items:center;
    gap:20px;

}

.search-box{

    width:310px;
    height:48px;
    border:1px solid #dddddd;
    border-radius:14px;
    display:flex;
    align-items:center;
    padding:0 18px;
    transition:.3s;
    background:#fff;

}

.search-box:hover{

    border-color:#20B2AA;

}

.search-box:focus-within{

    border-color:#20B2AA;
    box-shadow:0 0 0 4px rgba(32,178,170,.15);

}

.search-box i{

    color:#777;
    font-size:18px;
    margin-right:12px;

}

.search-box input{

    border:none;
    outline:none;
    width:100%;
    font-size:15px;
    background:none;

}

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

.btn-start{

    background:#20B2AA;
    color:#fff;
    font-weight:700;
    padding:13px 26px;
    border-radius:12px;
    transition:.3s;

}

.btn-start:hover{

    background:#148F89;
    transform:translateY(-2px);

}

/*=========================================
CATEGORY BAR
=========================================*/

.category-navbar{

    background:#1f2432;
    overflow-x:auto;

}

.category-navbar::-webkit-scrollbar{

    display:none;

}

.category-menu{

    display:flex;
    align-items:center;
    white-space:nowrap;

}

.category-menu li{

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

}

.category-menu li:last-child{

    border-right:none;

}

.category-menu a{

    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    padding:18px 22px;
    font-size:15px;
    font-weight:600;
    transition:.3s;

}

.category-menu a:hover{

    background:#2c3244;
    color:#20B2AA;

}