html {
    /* font-size: 8px; */
}

body {
        font-family: 'Roboto', sans-serif;
        margin: 0;
        line-height: 130%;
    color: #555555;
}
p {
        padding:10px;
        line-height: 130%;
    color: #555555;
}
.wrapper {
  width: 100%;
  /* whatever width you want */
  display: inline-block;
  position: relative;
}
.wrapper:after {
  padding-top: 38.25%;
  /* 16:9 ratio */
  display: block;
  content: '';
}
.wrapperX {
    width:100%;
    position: relative;
}

.wrapper_short {
  width: 100%;
  /* whatever width you want */
  display: inline-block;
  position: relative;
}
.wrapper_short:after {
  padding-top: 8.25%;
  /* 16:9 ratio */
  /* display: block; */
  content: '';
}

.main {
  position: relative; 
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  /* fill parent */
  background-color: #FFFFFF;
  /* let's see it! */
  color: white;
  overflow: hidden;
}

a {
    text-decoration: none;
    color: #444444;
     font-weight: bold; 
}


.header_container {
    height: 100px;
    text-align: center;  /* align the inline(-block) elements horizontally */
    font: 0/0 a;         /* remove the gap between inline(-block) elements */
}

.header_container:before {    /* create a full-height inline block pseudo=element */
    content: ' ';
    display: inline-block;
    vertical-align: middle;  /* vertical alignment of the inline element */
    height: 100%;
}

#header_element {
    display: inline-block;
    vertical-align: middle;  /* vertical alignment of the inline element */
    font: 16px/1 Arial sans-serif;        /* <-- reset the font property */
}


#boxshadow {
  position: relative;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, .5);
  padding: 10px;
  background: white;
}

#boxshadow img {
  width: 100%;
  border: 1px solid #8a4419;
  border-style: inset;
}

#boxshadow::after {
  content: '';
  position: absolute;
  z-index: -1; /* hide shadow behind image */
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
  width: 70%;
  left: 15%; /* one half of the remaining 30% */
  height: 100px;
  bottom: 0;
}

.footer_links {
        font-size: 14px;
}
.footer_line_height {
    line-height: 1.6;        
}
.footer_title {
    font-size: 26px;
}


.desktoponly {
    
}
.mobileonly {
    display: none;
    visibility: hidden;
    color: red;
}

h2  {
    color: #444;
}

h3  {
    color: #444;
}

.slanted {
    overflow: hidden;
    margin-right: 30px;
    border-right: 15px solid #222222;
}
.slantedX:after {
    z-index:10;
    height: 100%;
  width: 100%;
  background-color: #222;
  position: absolute;
  content: "";
  transform: rotate(90deg);
  transform-origin: center right;
}



.cookie-banner {
  position: fixed;
  bottom: 40px;
  left: 10%;
  right: 10%;
  width: 80%;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eee;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}
.close {
  height: 20px;
  background-color: #777;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;
}




.menu-item {
    display: inline-block;
    border: 1px solid #FFFFFF;
    padding: 0;
    border-radius: 8px;
    transition: background-color 0.2s;
}
.menu-item:hover {
    background-color: #f0f7d9; /* light greenish hover */
    border-color: #8AA61F;
}

.menu-item:hover a {
    color: #444444;
}

.menu-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 4px 10px;
    line-height: 1.2;
    box-sizing: border-box;
    cursor: pointer;
}


.menu-item-selected {
    display: inline-block;
    border: 1px solid #8AA61F;
    padding: 0;
    border-radius: 8px;
    transition: background-color 0.2s;
}
.menu-item-selected:hover {
    background-color: #f0f7d9; /* light greenish hover */
}

.menu-item-selected a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 4px 10px;
    line-height: 1.2;
    box-sizing: border-box;
    cursor: pointer;
}


@media (max-width: 768px) {
    .menu-item,
    .menu-item-selected {
        display: inline-block;
        box-sizing: border-box;
        width: 50%;            /* two per row */
        text-align: center;
        margin-bottom: 6px;    /* vertical spacing between rows */
    }
}
