
.header-start{
    position: fixed;
    height: 100px;
    width: 100%;
    background-color: #e6f8e8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid black;
    opacity: 0.5;
    z-index: 10;
}

.header{
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 2;
    color: #013117;
    transition: ease-out 0.5s;
    z-index: 11;
}

.header-scrolled{
    background-color: #e6f8e8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid black;
}

.header-backdrop{
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 2;
    background-color: white;
}

#headerbar{
    justify-content: space-between;
}

#logo{
    display: flex;
    justify-content: start;
    align-items: center;

}

#logo a{
    padding: 0px;
}

#logo img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}


#links ul{
    display: flex;
    width: 100%;
    justify-content:space-evenly;
    align-items: center;
}

h1{
    font-family:serif;
    font-size: 3rem;
    padding: 0px;
    text-align: center;
    margin: 0px;
}

ul{
    list-style-type: none;
    padding: 0;
}

.header a{
    text-decoration: none;
    color: #013117;
    font-size: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 3px;
}

#links a:hover{
    color: #e6f8e8;
    transition: all ease-out 0.3s;
    background-color: #013117;
}

#location{
    display: block;
}

.header h3{
    padding-right: 10px;
}
.phn a:hover{
    color: #e6f8e8;
    transition: all ease-out 0.3s;
    background-color: #013117;
}

.header-scrolled #links a:hover{
    background-color: #013117;
    color: #e6f8e8;
    transition: all ease-out 0.3s;
}

.header .phn{
    display: flex;
    justify-content: flex-end;
    align-items: center;

}

.header .phn a{
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    color: #013117;
    border-radius: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.header .phn a:hover{
    color: #e6f8e8;
    transition: all ease-out 0.3s;
}

.header .phn a div{
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../images/phone.svg");
    background-size: cover;
    transition: all ease-out 0.3s;
}

.header .phn a:hover div{
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../images/phone_light.svg");
    background-size: cover;
    transition: all ease-out 0.3s;
}

.header .phn p{
    margin: 0px;
}

.header #dropdown-menu{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header #dropdown-menu a{
    padding: 3px;
}

.header #dropdown-menu img{
    object-fit: contain;
    width: 25px;
    height: 25px;
}

footer{
    background-color: #e6f8e8;
    width: 100%;
    border-top: 1px solid black;
    margin-top: 30px;
}

.dropdown{
    position: absolute;
    top: 50px;
    right: 0px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.dropdown li{
    text-align: center;
    margin-top: 3px;
    margin-bottom: 10px;
}

.dropdown li a:hover{
    color: #e6f8e8;
    transition: all ease-out 0.3s;
    background-color: #013117;
}

#dropdown_phn{
    justify-content: center;
}

.closed{
    display:none;
}