

/*styling herunder*/


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 10px;
    color: #fff;
    z-index: 999;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0);
    max-height: 70px; /* Adjust the max-height as needed */
    overflow: hidden;
    max-width: 100%; /* Adjust the max-width as needed */

}

.logo img {
    max-width: 150px;
    height: 50px;
}

.company-info {
    flex-grow: 1; /* Allow company info to take available space */
    display: flex;
    align-items: center; /* Center vertically */
}

.phone-number {
    font-size: 18px;
    color: white;
    background-color: #0B2D5F;
    border-radius: 5px;
    padding: 5px;
    width: 100px;
    text-align: center;
    margin-right: 10px;
    margin-left: auto;
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

.phone-number a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    background-color: #0B2D5F;
    border-radius: 5px;
    display: inline-block; /* Ensures padding works correctly */
}

.phone-number a:hover {
}


.menu {
    cursor: pointer;
}

/* Menu icon styles */
.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 24px;
    background-color: #0B2D5F;
    border-radius: 5px;
    padding-left: 5px;
    padding-right: 5px;
    align-self: center; /* Center vertically within the flex container */
}


/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background-color: #0B2D5F;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    padding-top: 50px;
    transition: 0.5s;
    z-index: 999; /* Ensure overlay is above the image */
}

/* Full-screen style */
.mobile-menu.full-screen {
    width: 100%;
}


/* Close icon styles */
.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 33px;
    cursor: pointer;
    color: white;
}

.mobile-menu ul {
    list-style: none;
   margin-top: -100px;
}

.mobile-menu li {
    padding: 15px;
}

.mobile-menu a {
    text-decoration: none;
    color: white;
    font-size: 24px;
}

#hjem {
    border-radius: 5px;
    height: 15px;
    width: 40px;
    margin-left: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    background-color: white;
}


#service-opgaver-li {
    margin-bottom: 20px;
}

.menu-icon-house {
   fill: #0B2D5F;
   height: 30px;
   width: 30px;
}

.li-contact {
    border-radius: 5px;
    font-size: 10px;
    margin-right: auto;
    background-color: white;
    height: 10px;
    margin-bottom: 10px;
    display: flex;
    padding-bottom: 10px;
    align-items: center; /* Center items vertically */
    margin-left: 10px;
}


.li-contact a {
  font-size: 18px;
  color: #0B2D5F;
}

.menu-icon-contact {
    fill: #0B2D5F;
    height: 20px;
    width: 20px;
    margin-right: 10px;
    margin-bottom: -5px;
 
 }


/* Media Query for Responsive Design */
@media screen and (min-width: 768px) {

    .logo img {
        width: 100%;
        height: 100%;
    }

    .phone-number {
     width: 150px;
     height: 30px;

    }

    .phone-number a {
    font-size: 20px;
    }

    .menu-icon {
     font-size: 33px;
    }

    .close-icon {
   
        font-size: 45px;

    }
    

  
}
