*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
input,
textarea,
select,
button {
  border: none;
  outline: none;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
}
h1,
h2,
h3,
h4 {
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}

picture{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  display: block;
}

h3 a{
  color: inherit;
  text-decoration: none;
}

.project-slider img{
  max-width: 1320px;
  max-height: 600px;
}

table {
  border-spacing: 0;
}
select {
  width: 100%;
  appearance: none;
  background: #fff;
  padding: 20px;
}
.selected-wrap {
  width: 100%;
  position: relative;
}
.selected-wrap:has(> select)::after {
  content: '';
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  background: url('../media/icons/select.svg') no-repeat center;
  top: 0;
  right: 10px;
  background-size: 90%;
  top: 50%;
  transform: translateY(-50%);
}
