/* Main content */

/* expertise */
.expertise h3 {
  color: var(--h-inv);
  border-bottom: 1px solid var(--txt-inv);
}
.expertise a {
  color: unset;
  font-weight: unset;
}

.expertise-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px;
  gap: 20px;
}

.expertise-part {
  width: 80%;
  height: auto;
  padding: 0 10px;
  border-radius: 4px;
  background-color: var(--alt-bg);

  box-shadow: 5px 5px 5px #000;
  transition: all 0.3s;
}

.part-header {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.expertise-part-icon {
  width: 90%;
  height: auto;
  margin: 1em auto;
  min-height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.expertise-part-text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  transition: all 0.3s;
  color: var(--txt-inv);
}

.expertise-part:hover,
.expertise-part:focus,
.expertise-part:focus-visible {
  background-color: var(--buttons-hover-bg);
  color: var(--buttons-hover-txt);
  transform: scale(1.05);
}
.expertise-part:hover h3,
.expertise-part:focus h3,
.expertise-part:focus-visible h3 {
  color: var(--bg);
  border-bottom: 1px solid var(--bg);
}
.expertise-part:hover p,
.expertise-part:focus p,
.expertise-part:focus-visible p {
  color: var(--bg);
}
.gds {
  background-image: var(--gds);
}
.expertise-part:hover .gds,
.expertise-part:focus .gds,
.expertise-part:focus-visible .gds {
  background-image: var(--gds-hover);
}
.acc {
  background-image: var(--acc);
}
.expertise-part:hover .acc,
.expertise-part:focus .acc,
.expertise-part:focus-visible .acc {
  background-image: var(--acc-hover);
}
.ot {
  background-image: var(--OT);
}
.expertise-part:hover .ot,
.expertise-part:focus .ot,
.expertise-part:focus-visible .ot {
  background-image: var(--OT-hover);
}
.dance {
  background-image: var(--dance);
}
.expertise-part:hover .dance,
.expertise-part:focus .dance,
.expertise-part:focus-visible .dance {
  background-image: var(--dance-hover);
}

@media (min-width: 768px) {
  .expertise-flex {
    margin: 0 auto;
  }
  .expertise-part {
    width: 45%;
  }
}

@media (min-width: 1440px) {
  .expertise-part {
    width: 22%;
  }
  .part-header {
    min-height: 3em;
  }
  .part-header {
    margin-block-end: 0.1em;
  }
}

/* Over mij */

.over-mij {
  background-color: var(--alt-bg);
  color: var(--txt-inv);
}
.over-mij h2 {
  color: var(--h-inv);
}

/* quote */
.anderen {
  width: 90%;
  margin: 0 auto;
}

.tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .tabs {
    justify-content: start;
    gap: 30px;
    margin-left: 50px;
  }
}

.tab-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.tab-button:hover {
  transform: scale3d(1.1, 1.1, 1.1);
}

.tab-button-image {
  position: relative;
  width: 100px;
  height: 100px;
  border: 2px solid var(--links-hover);
  margin: 10px;
  margin: 0 auto;
  border-radius: 50px;
  background-color: none;
}
.tab-button-image img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 50px;
}
.tab-button.active {
  transform: scale(1.1);
}
.tab-button :hover .tab-button-image {
  transform: scale(1.1);
  position: relative;
}
.tab-button.active .tab-button-image {
  padding: 10px;
  border: 2px solid var(--links-hover);
  background-color: var(--bg);
  border-radius: 50%;
  position: relative;
}

.tab-button-info h3,
.tab-button-info a {
  font-size: var(--p-size);
  margin-block-end: 0;
  margin-block-start: 0;
}

.tab-content-container {
  border: 2px solid var(--links-hover);
  border-radius: 5px;
  margin-top: -40px;
  padding-top: 20px;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  width: 90%;
  margin: 0 auto;
}

/* artikelen */
.article-flex {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}

.article-header {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.article {
  display: flex;
  flex-direction: column;
  max-width: 90%;
  padding-bottom: 20px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  background-color: var(--bg);
  position: relative;
}

.article-image-container {
  width: 100%;
  height: 300px;
  border-radius: 5px 5px 0 0;
  position: relative;
}
.article-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 20px 0 20px;
  font-weight: 400;
}
.article-text h3 {
  font-size: var(--h5-size);
  font-weight: 600;
}

.article-button {
  display: flex;
  justify-items: end;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .article {
    max-width: 30%;
  }
  .article-image-container {
    height: 400px;
  }
}

/* contact button and part */
.contact {
  background-color: var(--alt-bg);
  color: var(--txt-inv);
}

.contact h2,
.contact h3 {
  color: var(--h-inv);
}
.contact a {
  color: var(--links-inv);
}
.contact a:hover {
  text-decoration: underline;
}

.contact-section {
  align-items: center;
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info {
  width: 100%;
}
.contact-img {
  width: 70%;
  height: 50vh;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  margin: 0 auto;
}

#contactInfo {
  display: none;
}
.hidden {
  display: none;
}

@media (min-width: 768px) {
  .contact-section {
    flex-direction: row;
  }
  .contact-info {
    width: 60%;
  }
  .contact-img {
    width: 30%;
  }
}
