*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

/* Sizes */
html {
  scroll-behavior: smooth;
}

body {
  background: #0f0407;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
}

@media all and (min-width: 500px) {
  body {
    font-size: 21px;
  }
}
.c-site {
  justify-content: center;
}

@media all and (min-width: 980px) {
  .c-site {
    display: flex;
  }
}

h1,
h2,
h3,
h4 {
  text-transform: uppercase;
  font-weight: 400;
}

h1 {
  font-size: 0.9rem;
}

@media all and (min-width: 500px) {
  h1 {
    font-size: 1.075rem;
  }
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 21px;
}

.wrapper {
  margin: 0 auto;
}

.sidebar {
  background: #0f0407;
  width: 100%;

  padding-top: 0;
}

@media all and (min-width: 980px) {
  .sidebar {
    width: 380px;
    flex-shrink: 2;
    padding: 35px;
  }
}

.header {
  display: flex;
  justify-content: center;
}

.logo {
  padding: 0 1rem;
  margin: 1rem 0;
  height: 75px;
  max-width: 100%;
}

.header h1,
.sidebar h5 {
  text-align: center;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  margin-left: 0rem;
}

@media all and (min-width: 500px) {
  .header h1,
  .sidebar h5 {
    margin-left: 1rem;
  }
}

@media all and (min-width: 980px) {
  .header h1,
  .sidebar h5 {
    margin-left: 0rem;
  }
}

.menu {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
  transition: all ease 0.2s;
}

@media all and (min-width: 500px) {
  .menu {
    position: sticky;
    top: 35px;
  }
}

@media all and (min-width: 980px) {
  .menu {
    visibility: visible;
    max-height: 1000px;
    opacity: 1;
    margin-bottom: 35px;
  }
}

.menu ul {
  text-align: center;
}

.menu li {
  margin: 35px 0;
}

.menu a {
  text-decoration: none;
  color: #b7b7b7;
  display: block;
  text-transform: uppercase;
  transition: all ease 0.2s;
}

.menu a:hover {
  color: #fff;
}

.menu.open {
  visibility: visible;
  max-height: 1000px;
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: white;
  display: block;
  border-radius: 2px;
}

/* 🔄 Hamburger transform naar X als .open op button komt */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.hamburger.open span {
  height: 6px;
}

.hamburger span {
  transition: all 0.3s ease;
}

@media all and (max-width: 979px) {
  .hamburger {
    display: flex;
    margin: 1rem auto; /* of passend maken aan je design */
  }
}

.main {
  padding: 15px;
}

@media all and (min-width: 500px) {
  .main {
    padding: 35px;
  }
}

@media all and (min-width: 980px) {
  .main {
    margin-left: 35px;
    width: calc(100% - 415px);
    max-width: 950px;
    padding: 35px;
  }
}

.main h2 {
  margin: 35px 0;
}

.content p {
  margin-bottom: 17.5px;
}
.content h3 {
  margin-bottom: 17.5px;
}

.signature {
  width: 45%;
  display: block;
  margin-top: 35px;
  float: right;
}

@media all and (min-width: 500px) {
  .signature {
    width: 30%;
  }
}

.section-head {
  color: #b7b7b7;
}

.trigger {
  cursor: pointer;
}

.box {
  background: white;
  color: #0f0407;
  padding: 15px;
}

@media all and (min-width: 500px) {
  .box {
    padding: 35px;
  }
}

.box ul {
  list-style: square;
  padding-left: 20px;
}

.box ul li {
  margin-bottom: 7px;
}

.box p {
  padding: 5px 0;
}

.box h4 {
  margin: 10px 0;
}

#about-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* @media all and (min-width: 980px) {
  #about-section::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-right: 25px solid white;
    margin: 0 0 0 -25px;
  }
} */

.wide-list .box {
  display: none;
  width: 100%;
}

.wide-list h3 {
  padding: 15px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.wide-list h3 svg {
  fill: #b7b7b7;
  flex-basis: 15px;
  margin-left: 35px;
  flex-shrink: 0;
  transition: 0.2s;
}

.wide-list h3.active {
  border-bottom: 2px solid white;
  background: white;
  color: #0b0e17;
}

@media all and (min-width: 980px) {
  .wide-list h3:hover {
    border-bottom: 2px solid white;
    background: white;
    color: #0b0e17;
  }
  .wide-list h3:not(.trigger):hover {
    background: #0b0e17;
    color: white;
    border-bottom: 2px solid white;
  }
}

.wide-list .trigger {
  background: #000;
}

.wide-list .active {
  background: white;
  color: #0b0e17;
}

.wide-list .active svg {
  fill: #0b0e17;
  transform: rotate(180deg);
}

#portfolio-section {
  position: relative;
}

#slider {
  display: flex;
  flex-flow: row nowrap;
  overflow: hidden;
}

#slider li {
  width: 100%;
  position: relative;
  flex: 1 0 auto;
  transition: 0.5s ease-in-out;
}

#slider li article {
  font-weight: 200;
  height: auto;
  width: 100%;
  text-align: center;
  background: white;
  color: black;
  padding: 17.5px;
  position: absolute;
  bottom: 0;
  z-index: 2;
}

@media all and (min-width: 500px) {
  #slider li article {
    padding: 35px;
  }
}

#slider img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.arrow svg {
  fill: white;
  width: 40px;
  height: 40px;
  padding: 5px;
  background: #0b0e17;
}

.arrow:hover svg {
  fill: #b7b7b7;
}

#slider-next {
  right: 0;
}

#slider-next svg {
  transform: rotate(-90deg);
}

#slider-prev {
  left: 0;
}

#slider-prev svg {
  transform: rotate(90deg);
}

#contact-section h3 {
  color: #b7b7b7;
  font-size: 1.5rem;
}

#contact-section h3 span {
  display: block;
  color: white;
  font-size: 2rem;
}

@media all and (min-width: 980px) {
  #contact-section {
    display: flex;
    justify-content: space-between;
    align-content: center;
  }
}

#contact-section > div {
  text-align: center;
  padding-bottom: 35px;
}

@media all and (min-width: 980px) {
  #contact-section > div {
    text-align: left;
  }
}

#contact-section .qr {
  padding: 35px;
}

#contact-section .qr img {
  width: 200px;
}

.contact-details li {
  font-size: 1.5rem;
  padding-top: 17.5px;
  text-transform: uppercase;
}

.contact-details li span {
  color: #b7b7b7;
  display: block;
  font-size: 1.2rem;
}

.contact-details li a {
  color: white;
  text-decoration: none;
}

.contact-details li a:hover {
  color: #b7b7b7;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
}
.whatsapp a {
  display: block;
  background: #25d366;
  border-radius: 99rem;
  padding: 0.5rem 2rem;
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease 0.2s;
}
.whatsapp a:hover {
  background: white;
}

.block-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.block-list > li {
  flex-basis: 100%;
  margin-top: 15px;
  position: relative;
}
@media all and (min-width: 768px) {
  .block-list > li {
    flex-basis: calc(50% - 17.5px);
    margin-top: 35px;
  }
}

@media (min-width: 980px) {
  .block-list > li h3 svg {
    max-height: 130px;
    max-width: 180px;
  }
}
@media (min-width: 768px) {
  .block-list > li h3 svg {
    max-height: 120px;
    max-width: 60%;
  }
}
.block-list > li h3 svg {
  max-height: 110px;
  max-width: 140px;
  position: absolute;
  top: 5px;
  right: 15px;
}

.block-list > li h3 {
  background: white;
  color: black;
  padding: 15px;
  height: 160px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  transition: 0.1s;
  z-index: 2;
  font-weight: 400;
  font-size: 2rem;
  overflow: hidden;
}
.block-list > li h3:hover {
  background: #b7b7b7;
}
.block-list > li a {
  text-decoration: none;
  color: black;
}

.cta {
  margin: 1rem 0;
  display: inline-block;
  background: #cd1517;
  color: white;
  border-radius: 99rem;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all ease 0.2s;
}
.cta:hover {
  background: black;
}

.mus {
  font-size: 1rem;
  text-align: right;
  margin-bottom: 2rem;
}
.mus a {
  color: white;
}

/* https://www.svgrepo.com/collection/oval-line-action-icons/ */
