@import url('https://fonts.googleapis.com/css2?family=Alatsi&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


body{
    background-color: #f5f5f5;
    font-family: "Montserrat";
    padding: 0;
    margin: 0;
}

header{
    background-color: #1E1CCF;
    z-index: 1000;
    width: 100%;
    position: fixed;
    font-family: "alatsi";
}

.navbar{
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    height: 60px;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.logo img{
    height: 40px;
}

.navList{
    display: flex;
    align-items: center;
}

.navList ul{
    display: flex;
    justify-content: center;
    list-style: none;
}

.navItem{
    margin: 0px 20px; 
    padding: 10px 0px;
    transition: all .5s ease-in-out;
}

.navLink{
    text-decoration: none;
    font-size: 1rem;
    color: #fff;
}

.navLink:hover{
    color: #FF1774;
    transition: all .2s ease-in-out;
}

.btnLogin{
    background-color: #FF1774;
    padding: 10px 15px;
    border-radius: 5px;
}

.btnLogin:hover{
    background-color: #ffffff;
    color: #FF1774;
}

.btnLogin:hover a{
    color: #FF1774;
}



/* MENU MOBILE */

.iconMobile{
    display: none;
    height: 30px !important;
}

.iconMobile button:hover{
    background: inherit;
}

.iconMobile button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.iconMobile .icon{
    height: 100%;
    width: 100%;
}

.iconMobileClose button{
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.iconMobileClose{
    margin: 20px;
    position: relative;
    display: flex;
    justify-content: space-around;
}

.iconMobileClose .logo{
    height: 10px;
    position: relative;
}

.iconMobileClose button:hover{
    background: inherit;
}

.menuMobile {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    background-color: #1E1CCF;
    transition: 0.3s;
    text-align: center;
    color: #fff;
}

.menuMobileContent{
    text-align: center;
    margin-top: 70px;
}
.menuMobile a {
    padding: 8px;
    text-decoration: none;
    font-size: 20px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

.menuMobile .navLink:active{
    color: #FF1774;
    transition: .2s;
}

@media screen and (max-width: 1165px){

    .navList{
        display: none;
    }

    .iconMobile{
        display: block;
    }

    .btnLogin{
        width: 70%;
        margin: 10px auto;
    }

}

@media(max-width: 600px){

    .logo img{
        height: 30px;
    }

    .navLink{
        font-size: 0.83rem;
    }

}

@media(max-width: 400px){

    .logo img{
        height: 25px;
    }

    .navbar{
        padding: 0 2rem;
    }
}