/*-------------------------------------algemeen------------------------------------*/

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16pt;
}

main {
  padding-bottom: 50px;
}

button,
a {
  background: transparent;
  text-decoration: none;
  color: black;
  border: none;
}

b,
strong {
  font-weight: bold;
}

h1 {
  font-weight: bold;
  font-size: 48pt;
  margin: 0;
}

h2 {
  font-weight: bold;
}

nav p {
  font-size: 16pt;
}

p {
  margin: 0;
  display: block;
  font-size: 16pt;
}

header {
  font-size: 16pt;
  z-index: 1;
  top: 0;
  position: sticky;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  box-shadow: 0 0px 10px -5px rgba(0, 0, 0, 0.5);
}

img {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: top;
}

ul li {
  list-style-type: none;
  font-size: 16pt;
}

/*-------------------------------------classes and id's------------------------------------*/

.notdisplayed {
  display: none;
}

.smallheading {
  font-size: 24pt;
  width: 100%;
  grid-column: 3 / span 8;
  text-align: left;
  padding: 0;
  margin: 0;
}

/*------------------------------------header------------------------------------*/

label[for="hamburger"] {
  display: none;
  padding-left: 20px;
  cursor: pointer;
}

.hamburgermenu {
  width: 40px;
}

/*--------afbeelding-------*/

input[type="checkbox"] {
  display: none;
}

/*--------haalt selectie rondjes weg-------*/

header nav ul li {
  float: left;
}

.skiplink {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background-color: #f78764;
  padding: 10px;
  text-decoration: underline;
  outline: none;
  border-radius: 0px 5px 5px 0;
}

.skiplink:focus {
  position: static;
  width: auto;
  height: auto;
}

/*------------------------------------einde hamburgermenu------------------------------------*/

.nav-container {
  display: inline;
}

.page-title {
  display: flex;
  padding: 0 10px 0 20px;
}

.logoimage-title {
  display: none;
  padding-right: 20px;
  width: 250px;
}

.logo {
  opacity: 0%;
  width: 40px;
  height: 40px;
}

.currentpage {
  font-weight: bold;
}

.logo-title {
  font-weight: bold;
  padding-right: 20px;
}

ul li a:hover {
  color: #0f7173;
}

header div a:hover {
  color: #0f7173;
}

/*-------------------------------------einde header, start masthead-------------------------------------*/

.masthead {
  height: 500px;
}

.masthead-text {
  display: block;
  grid-column: 3 / span 8;
  z-index: 0;
  margin-top: 15%;
  text-align: center;
}

.masthead-title {
  padding: 0 5% 0 5%;
  margin-block-end: 0;
  margin-bottom: 15px;
  font-size: 48pt;
}

.imgmastheadarrow {
  padding-top: 20px;
  opacity: 1;
  width: 50px;
  text-align: center;
}

/*-------------------------------------filteroptions-------------------------------------*/

.filter {
  grid-column: 3 / span 8;
  justify-content: space-between;
  padding: 0 0 20px 2px;
}

ul.filter li {
  display: inline;
}

ul.filter li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
  /*--------slash-------*/
}

input[type="radio"][id="filter0"]:hover + label,
input[type="radio"][id="filter1"]:hover + label,
input[type="radio"][id="filter2"]:hover + label,
input[type="radio"][id="filter3"]:hover + label,
input[type="radio"][id="filter4"]:hover + label {
  color: #0f7173;
  cursor: pointer;
}

/*--------hoverkleur-------*/

input[type="radio"] {
  display: none;
}

/*--------haalt selectie rondjes weg-------*/

input[type="radio"][id="filter0"]:checked + label,
input[type="radio"][id="filter1"]:checked + label,
input[type="radio"][id="filter2"]:checked + label,
input[type="radio"][id="filter3"]:checked + label,
input[type="radio"][id="filter4"]:checked + label {
  font-weight: bold;
}

/*--------geselecteerd element wordt bold-------*/

/*-------------------------------------einde masthead, start sections-------------------------------------*/

section a img {
  width: 100%;
}

.twelverowgrid {
  grid-template-columns: repeat(12, 1fr);
  display: grid;
  width: 100%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.artwork1 {
  filter: brightness(100%);
  position: relative;
  grid-column: 3 / span 4;
  padding: 2px;
  transition: 0.5s;
}

.artwork2 {
  filter: brightness(100%);
  position: relative;
  grid-column: 7 / span 4;
  padding: 2px;
  transition: 0.5s;
}

.artwork1:hover img {
  filter: brightness(25%);
  transition: 0.5s;
}

.artwork2:hover img {
  filter: brightness(25%);
  transition: 0.5s;
}

.artwork2:hover .hovertext {
  opacity: 100%;
  transition: 0.5s;
}

.artwork1:hover .hovertext {
  opacity: 100%;
  transition: 0.5s;
  height: inherit;
}

.hovertext {
  width: 100%;
  top: 45%;
  position: absolute;
  text-align: center;
  opacity: 0;
  color: white;
}

/*----------------------------pijl naar de top-----------------------------*/

.arrowup {
  float: right;
  margin-right: 5%;
}

.arrow {
  height: 100px;
  opacity: 50%;
}

.arrow:hover {
  transition: 0.5s;
  opacity: 80%;
}

/*----------------------------alle andere pagina's-----------------------------*/
.mainimage {
  padding: 0 0 2% 0;
  width: 100%;
  grid-column: 3 / span 8;
  display: block;
}

.mainimagebig {
  padding: 0 0 2% 0;
  width: 100%;
  grid-column: 3 / span 8;
  display: block;
}

.heading {
  width: 100%;
  grid-column: 3 / span 8;
  text-align: center;
  padding-top: 5%;
  margin-bottom: 2%;
  display: block;
}

/**/

.textblock {
  display: block;
  margin: 0;
  width: 100%;
  grid-column: 3 / span 8;
  text-align: left;
  padding-top: 2%;
  padding-bottom: 2%;
}

.gridrow24 {
  grid-template-columns: repeat(24, 1fr);
  display: grid;
  width: 100%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5%;
}

.breadcrumb {
  padding: 20px;
}

ul.breadcrumb li {
  font-size: 14pt;
  display: inline;
}

ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

.underlined {
  text-decoration: underline;
}

/*---------------------------bakkerijmuseum------------------------------------*/

.zoomedin {
  width: 100%;
  grid-column: 3 / span 8;
  display: none;
}

.extraimage {
  grid-column: 4 / span 3;
  padding: 5% 0 5% 0;
}

.atticimage {
  width: 100%;
}

.describingtext {
  margin: auto;
  margin-left: 5%;
  margin-right: 5%;
  grid-column: 7 / span 3;
  text-align: left;
}

/*-------------------button--------------------*/

.button {
  background-color: #0f7173;
  margin-top: 2%;
  display: inline-block;
  /*----behoudt de vorm, maar begint op nieuwe regel-----*/
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  color: white;
  text-align: center;
  font-size: 16pt;
  cursor: pointer;
}

.button a {
  color: white;
}

.button:hover {
  background-color: #272932;
}

/*-----------------------------Cello trio--------------------------------*/

.pagename {
  font-size: 24pt;
  width: 100%;
  grid-column: 3 / span 8;
  text-align: center;
  padding-top: 5%;
  padding-bottom: 5%;
}

.imagegroup {
  grid-column: 3 / span 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}

.cellotext {
  text-align: left;
  padding: 3% 0 3% 0;
  grid-column: 3 / span 8;
}

.celloresult {
  grid-column: 5 / span 11;
  display: block;
}

.resultimagebig {
  width: 100%;
}

.cellodescribingtext {
  margin: auto;
  margin-left: 10%;
  margin-right: 10%;
  grid-column: 16 / span 5;
  text-align: left;
  display: block;
}

/*-----------------------------Mottowaaijenberg--------------------------------*/

.image1 img,
.image2 img,
.image3 img {
  width: 100%;
}

.image1 {
  padding-right: 10px;
}

.image3 {
  padding-left: 10px;
}

/*-----------------------------Kandelaar--------------------------------*/

.imagebigger img {
  width: 100%;
}

.imagebigger {
  padding-right: 10px;
}

/*-----------------------------contactformulier--------------------------------*/

.icons {
  width: 60px;
  display: block;
  margin: 0;
}

.icontext {
  padding: 5% 0 15% 0;
}

.data {
  grid-column: 2 / span 2;
  font-style: italic;
  margin-top: 0;
  display: block;
}

.contactform {
  grid-column: 5 / span 6;
  display: block;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

legend {
  display: none;
}

input[type="text"],
select,
textarea {
  font-size: 16pt;
  width: 100%;
  padding: 12px;
  border: 1px solid #83c5be;
  border-radius: 5px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
}

input[type="email"],
select,
textarea {
  font-size: 16pt;
  width: 100%;
  padding: 12px;
  border: 1px solid #83c5be;
  border-radius: 5px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
}

.container {
  font-size: 16pt;
  border-radius: 5px;
  background-color: white;
  padding: 20px;
  align-items: center;
  margin-left: 30%;
  margin-right: 30%;
}

textarea {
  height: 200px;
  font-family: Arial, Helvetica, sans-serif;
}

/*-----------------------------Over mij--------------------------------*/

.headshot {
  grid-column: 3 / span 2;
  height: 300px;
  display: block;
  margin-bottom: 5%;
}

.biography {
  display: block;
  grid-column: 6 / span 5;
  margin-top: auto;
  margin-bottom: auto;
}

.hover:hover {
  color: #0f7173;
}

.download {
  grid-column: 3 / span 3;
  text-align: center;
}

.skills {
  background-color: #edf6f9;
  margin-top: 2%;
  padding-top: 2%;
  padding-bottom: 2%;
}

.bold {
  font-weight: bold;
}

/*-------------------------------------Producten en diensten-------------------------------------*/

.subtext {
  display: block;
  margin: 0;
  width: 100%;
  grid-column: 4 / span 6;
  text-align: center;
  padding-top: 0;
  padding-bottom: 5%;
  font-style: italic;
}

.aligned {
  text-align: left;
  grid-column: 3 / span 8;
  padding-top: 2%;
}

.listitem {
  list-style-type: circle;
  text-align: left;
  margin-left: 5%;
}

table {
  padding-top: 5%;
  grid-column: 3 / span 8;
  width: 100%;
}

td,
th {
  text-align: left;
  padding: 10px;
}

th {
  font-size: 24pt;
  font-weight: bold;
}

tr:nth-child(even) {
  background-color: #edf6f9;
}
