@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@500;700&display=swap');

*{
    box-sizing: border-box;
    margin:0;
    padding: 0;
}
.body{
    font-family:'Epilogue', sans-serif;
}

.logo img{
    min-width: 100%;
    width: auto;
}

nav{
    display: none;
}

.nav-toggle{
    display:flex;
    flex-direction: column;
}

.menu{
    display: block;
    cursor:pointer;
}

.close{
    display:block;
    position: absolute;
    cursor:pointer;
    top:1em;
    right:1em;
}

#menu-bar{
    display:none;

}

.mobile-menu{
    display:flex;
    flex-direction: column;
    gap:2em;
    position: fixed;
    top:0;
    right:0;
    width:60%;
    height:100%;
    background-color: hsl(0, 0%, 98%);
    z-index: 1000;
    visibility: hidden;
}

.overlay {
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 999; 
  }
#fm-btn{
    background-color: hsl(0, 0%, 98%);
    margin-left: 10px;
    border:none;
    cursor: pointer;
}

#cm-btn{
    background-color: hsl(0, 0%, 98%);
    margin-left: 10px;
    border:none;
    cursor: pointer;

}




.features{
    margin-top:3em;
    margin-left:1em;
}

.company{
    margin-left:1em;
}

.careers{
    margin-left:1em;
}

.about{
    margin-left:1em;
}

.login{
    min-width:100%;
    margin-bottom:0em;
    text-align:center;
    padding-bottom:0;
}

.login a{
    padding: 0 40px;
}


.register{
    min-width:100%;
   margin-top:0;
   text-align: center;
}
.register a{
    padding: 10px 40px;
}


.main-container{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    margin:10px 0;
}

.text{
   max-width: 100%;
   text-align:center;
   margin:10px 20px;
}

.text h1{
    font-size:34px;
    font-weight: 700;
    margin-bottom:15px;
}
.text p{
    width:100%;
    font-size: 15px;
    text-align: center;
    margin-bottom:15px;
}

.img-hero{
    min-width:100%;
    margin:0;
}

.img-hero img{
    content: url('./images/image-hero-mobile.png');
    object-fit: cover;
    height:50%;
}
.sponsers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin:50px 10px;

}
.client{
    margin-right:10px;
    height:20px;
    width:100%;
}

.client-img{
    width: 80px;
    height: 20px;
    object-fit: contain;
}

.fm-menu{
    text-align: center;
    display: none;
    
}

.fm-menu div{
    margin-bottom:1em;
}

.cm-menu{
    display: none;
    text-align: center;
}

.cm-menu div{
    margin-bottom:1em;
}

.display{
    display: block;
}