@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap');


*{
  
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
   
    
    
    
    


    }


li, a, button {

    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

.meny  {
    

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  30px 10%;
    background-color: #24252A;
    position: sticky;
    
    
   
    

   
}

.logo {
    cursor: pointer;
    width: 350px;
 
}

.nav_links {
    list-style: none;
    margin-left: 350px;
 
   
}

.nav_links li {
    display:inline-block;
    padding: 0% 25px;
    align-items: center;
  


}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #97c11f
}

button {
    padding: 9px 25px;
    background-color: rgba(151, 193, 31,1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-left: 10;
    right: 1;
}

button:hover {
    background-color: rgba(151, 193, 31,0.8);
}


.main {
display: flex;
background-color: #39393a;
height: 800px;


}

.footer {
    
    background-color:#24252A;
    height: 70px;
    bottom: 0;
    position: sticky;
}

.nav {
    padding-left: 0px;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
    top: 30px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
}

.cta {
   
    margin-left: auto;
    right: 0;
}

.cta_hidden {
    margin-left: auto;
    visibility: hidden;
}


@media screen and (max-width: 767px) {
    body {
       font-size: 17px; /* Adjust font size for smaller screens */
    }
 
    /* Additional styles specific to smaller screens go here */
    header {
        display: flex;
        justify-content: space-between;
        padding: 7% 10%;
        /* Adjust header padding for smaller screens */
    }
 
    nav {
       /* Hide navigation on smaller screens (example) */
       padding-left: 0px;
    }
    .logo {
       max-width: 270px;
       padding-left: 0;
       margin-right: 0px;
    }

    .nav_links {
        display: none;
        flex: column;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100%;
        background-color: #333;
        
    }  
    
    .nav_links.show {
        display: block;
    
    }

    .burger-menu {
        display: block;
        flex-direction: column;
        cursor: pointer;
        margin-left: auto;
        top: 30px;
        right: 0;
    }
    
    .bar {
        width: 30px;
        height: 4px;
        background-color: white;
        margin: 3px 0;
    }
    .cta {
        margin-left: 10px;
        right: 0;
        display: none;
    }

    .cta_hidden {
        visibility: visible;
    }
    

    }

    @media screen and (min-width: 768px) {
        .cta_hidden {
           visibility: hidden;
        }
    }