/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

.header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #ececec;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:18px 45px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-icon{
    width:50px;
    height:50px;
    border-radius:16px;
    background:linear-gradient(135deg,#4f6cf7,#8a2be2);
    display:flex;
    align-items:center;
    justify-content:center;
    transform:rotate(-8deg);
    flex-shrink:0;
}

.logo span{
    font-size:36px;
    font-weight:700;
    background:linear-gradient(90deg,#4f6cf7,#8a2be2);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.nav-menu{
    list-style:none;
    display:flex;
    align-items:center;
    gap:42px;
    margin:0;
    padding:0;
}

.nav-menu li{
    white-space:nowrap;
}

.nav-menu a{
    text-decoration:none;
    color:#111;
    font-size:20px;
    font-weight:500;
    transition:.3s;
}

.nav-menu a:hover,
.nav-menu a.active{
    color:#6c3cf0;
}

/* Tablet */

@media (max-width:991px){

.container{
    flex-direction:column;
    gap:20px;
}

.logo span{
    font-size:30px;
}

.nav-menu{
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
}

.nav-menu a{
    font-size:17px;
}

}

/* Mobile */

@media (max-width:768px){

.container{
    padding:15px;
}

.logo span{
    font-size:28px;
}

.logo-icon{
    width:44px;
    height:44px;
}

.nav-menu{
    gap:18px;
}

.nav-menu a{
    font-size:16px;
}

}