body {
    padding: 0px;
    margin: 0px;
}

.header {
    /* background-color: rgb(38, 78, 73); */
    display: grid;
    grid-template-columns: 1fr 3fr;
    height: 120px;
    box-shadow: 1px 19px 23px -9px rgba(0,0,0,0.75);
}

.logowrapper img {
    height: 110px;
    padding: 5px;
}

.headerinformation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: aliceblue;
    padding: 5px;
    width: 97vw;
}

.h {
    letter-spacing: 0.5px;
    font-size: 15px;
    color: rgb(38, 78, 73);
    font-weight: 600;
    padding: 0px 3vw 0px 3vw;
}

.linkswrapper {
    display: flex;
    align-self: center;
    justify-content: center;
}

.navlinks {
    display: flex;
    justify-content: space-between;
    /* width: 200px; */
    align-items: start;
    align-self: flex-start;
}

.navlink {
    display: flex;
    align-items: center;
    padding: 5px;

    
}

.navlink a {
    text-decoration: none;
    padding: 7px;
    border-radius: 6px;
    color: rgb(236, 154, 1);
    font-size: 18px;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    font-style: normal;
    transition-duration: 0.5s;
    transition-property: color;

    background-color: aliceblue;
    margin: 3px;
    border-radius: 5px;
}

.navlink a:hover {
    background-color: rgb(230, 230, 230);
    padding: 7px;
    border-radius: 6px;
    transition: 0.4s;
}

.locationunderline {
    text-decoration: overline;
}
.dropbtn {
    text-decoration: none;
    font-weight: 500;
    padding: 7px;
    color: rgb(236, 154, 1);
    font-size: 18px;
    font-family: 'Source Sans Pro';
    font-weight: 600;
    font-style: normal;
    transition-duration: 0.5s;
    transition-property: color;
    background-color: aliceblue;
    margin: 3px;
    border-radius: 5px;
    border: none;
    transition: 0.4s;

    cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 10px;
}

.dropdown-content a {
  color: rgb(236, 154, 1);
  font-weight: 800;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: rgb(230, 230, 230);}

@media (max-width: 780px) {
    .header {
        height: 55px;
    }

    .logowrapper {
        width: 50px;         /* size of visible area */
        overflow: hidden;     /* hide overflow */
        border-radius: 10px;  /* optional */
    }

    .logowrapper img {
        width: 100px;
        height: 43px;
    }

    .h {
        font-size: 8px;
        padding: 0px 1vw 0px 1vw;
    }

    .navlink a {
        font-size: 10px;
    }

    .dropbtn {
        font-size: 10px;
    }


}