header .header-info {
  display: grid;
  grid-template-columns: auto 215px;
  align-items: center;
  justify-content: space-between;
  padding-left: 2rem;
}
header .header-info-contact {
  display: flex;
}
header .header-info-contact h3 a {
  color: rgb(49, 147, 67);
}
header .header-info-contact h3 a:hover {
  color: white;
}
@media (min-width: 1280px) {
  header .header-info-contact h3 a:hover {
    color: rgb(246, 224, 52);
  }
}
header .header-info-address {
  display: none;
}
@media (min-width: 1200px) {
  header .header-info-address {
    display: block;
  }
}
header .header-info-time {
  display: flex;
  align-items: center;
}
header .header-info-time span {
  font-weight: bold;
}
header .header-info .working-hours {
  display: flex;
  flex-direction: column;
  width: 100%;
}
header .header-info .working-hours p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  header .header-info {
    grid-template-columns: 34% 34% 28%;
  }
}

.menu li a[href*=tiktok]:before {
  display: inline-block;
  content: " ";
  background-image: url("../img/brand_tiktok_icon.svg");
  background-size: 21px 21px;
  height: 20px;
  width: 20px;
}
.menu li:hover a[href*=tiktok]:before {
  filter: invert(1);
}

.menu li a[href*=google]:before {
  content: "\f1a0";
}

#scrollUp {
  color: rgb(49, 147, 67);
  box-shadow: 2px 2px 11px 4px rgba(0, 0, 0, 0.3);
}

.brand-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.brand-item {
  margin-bottom: 25px;
}

.projekte-seite .service-list_item img {
  box-shadow: 3px 5px 12px 1px rgba(77, 77, 77, 0.5);
}
.projekte-seite .bg-projects::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/Remo-Service-Wienke_Werkzeugkreis.jpg);
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.1;
  filter: grayscale(1);
  z-index: -1;
}
.projekte-seite .projekte {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.projekte-seite .projekte .projekt {
  padding: 25px 45px;
  background: white;
}
.projekte-seite .projekte .projekt-titel {
  display: flex;
  justify-content: center;
  text-align: center;
  text-decoration: underline;
  color: rgb(49, 147, 67);
  margin-bottom: 2rem;
  height: 66px;
}
.projekte-seite .projekte .projekt-body {
  position: relative;
}
.projekte-seite .projekte .projekt-body-info-top {
  display: flex;
  justify-content: center;
}
.projekte-seite .projekte .projekt-body-info-top span {
  background: rgb(49, 147, 67);
  padding: 3px 18px;
  border-radius: 30px;
  margin-bottom: 10px;
  color: white;
}
.projekte-seite .projekte .projekt-body-content {
  position: relative;
  box-shadow: 3px 5px 12px 1px rgba(77, 77, 77, 0.5);
}
.projekte-seite .projekte .projekt-body-content-inner {
  overflow: hidden;
}
.projekte-seite .projekte .projekt-body-bilder {
  position: relative;
  height: 425px;
  width: 100%;
}
.projekte-seite .projekte .projekt-body-bilder img {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.projekte-seite .projekte .projekt-body-bilder img.active {
  background: white;
}
.projekte-seite .projekte .projekt-body-bilder img.same-height {
  object-fit: cover;
  width: 100%;
}
.projekte-seite .projekte .projekt-body-bilder-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translate(0, -50%);
}
.projekte-seite .projekte .projekt-body-bilder-arrow.prev, .projekte-seite .projekte .projekt-body-bilder-arrow.next {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  font-size: 28px;
  color: white;
  line-height: 1em;
  cursor: pointer;
  transform: translate(0, -50%);
  z-index: 99;
}
.projekte-seite .projekte .projekt-body-bilder-arrow.prev i, .projekte-seite .projekte .projekt-body-bilder-arrow.next i {
  font-size: 30px;
  z-index: 5;
}
.projekte-seite .projekte .projekt-body-bilder-arrow.prev:after, .projekte-seite .projekte .projekt-body-bilder-arrow.next:after {
  content: "";
  display: block;
  position: absolute;
  background-color: rgb(49, 147, 67);
  border-radius: 25px;
  width: 24px;
  height: 24px;
  z-index: 1;
}
.projekte-seite .projekte .projekt-body-bilder-arrow.prev.hidden, .projekte-seite .projekte .projekt-body-bilder-arrow.next.hidden {
  display: none;
}
.projekte-seite .projekte .projekt-body-bilder-arrow.prev {
  transform: translate(-25px, -50%);
}
.projekte-seite .projekte .projekt-body-bilder-arrow.prev:after {
  top: 4px;
  left: -5px;
}
.projekte-seite .projekte .projekt-body-bilder-arrow.next {
  right: 0;
  transform: translate(25px, -50%);
}
.projekte-seite .projekte .projekt-body-bilder-arrow.next:after {
  top: 4px;
  right: -5px;
}
.projekte-seite .projekte .projekt-body-bild-text {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.7);
  transition: all 1s ease-in-out;
  z-index: -1;
}
.projekte-seite .projekte .projekt-body-bild-text p {
  font-size: 18px;
  color: black;
}
.projekte-seite .projekte .projekt-body-bild-text p:not(.gesamt) {
  display: none;
}
.projekte-seite .projekte .projekt-body-bild-text p.show {
  display: block;
}
.projekte-seite .projekte .projekt-body-bild-text.show {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
.projekte-seite .projekte .projekt-body-button > p {
  display: inline-block;
  background: rgb(49, 147, 67);
  padding: 3px 18px;
  border-radius: 30px;
  color: white;
  margin-left: 50%;
  margin-top: 25px;
  transform: translate(-50%, 0);
  cursor: pointer;
}
@media (min-width: 992px) {
  .projekte-seite .projekte .projekt:nth-child(odd) {
    border-top: 2px solid #eee;
    border-left: 2px solid #eee;
  }
}
@media (min-width: 992px) {
  .projekte-seite .projekte .projekt:nth-child(even) {
    border-top: 2px solid #eee;
    border-left: 2px solid #eee;
    border-right: 2px solid #eee;
  }
}
@media (min-width: 992px) {
  .projekte-seite .projekte .projekt:last-child {
    border-right: 2px solid #eee;
    border-bottom: 2px solid #eee;
  }
}

.x-mas {
  position: fixed;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 125;
  /* customizable snowflake styling */
}
.x-mas.hidden {
  display: none !important;
}
.x-mas > div {
  max-width: 525px;
  background-color: rgb(179, 0, 12);
  border-radius: 15px;
  margin: auto 10px;
}
.x-mas .x-mas-inner {
  padding: 10px;
  border: 2px solid rgb(216, 216, 216);
  border-radius: 15px;
  margin: 5px;
}
.x-mas .x-mas-inner h3, .x-mas .x-mas-inner p {
  color: white;
}
.x-mas .x-mas-inner h3 {
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .x-mas .x-mas-inner h3 {
    margin-bottom: 15px;
  }
}
.x-mas .x-mas-inner p {
  font-size: 18px;
}
@media (min-width: 768px) {
  .x-mas .x-mas-inner p {
    margin-bottom: 10px;
  }
}
@-webkit-keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes snowflakes-shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(80px);
    transform: translateX(80px);
  }
}
@keyframes snowflakes-fall {
  0% {
    top: -10%;
  }
  100% {
    top: 100%;
  }
}
@keyframes snowflakes-shake {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(80px);
  }
}
.x-mas .snowflake {
  position: fixed;
  top: -10%;
  color: #e6ffff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  -webkit-animation-name: snowflakes-fall, snowflakes-shake;
  -webkit-animation-duration: 10s, 3s;
  -webkit-animation-timing-function: linear, ease-in-out;
  -webkit-animation-iteration-count: infinite, infinite;
  -webkit-animation-play-state: running, running;
  animation-name: snowflakes-fall, snowflakes-shake;
  animation-duration: 10s, 3s;
  animation-timing-function: linear, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-play-state: running, running;
}
.x-mas .snowflake:nth-of-type(0) {
  left: 1%;
  -webkit-animation-delay: 0s, 0s;
  animation-delay: 0s, 0s;
}
.x-mas .snowflake:nth-of-type(1) {
  left: 10%;
  -webkit-animation-delay: 1s, 1s;
  animation-delay: 1s, 1s;
}
.x-mas .snowflake:nth-of-type(2) {
  left: 20%;
  -webkit-animation-delay: 6s, 0.5s;
  animation-delay: 6s, 0.5s;
}
.x-mas .snowflake:nth-of-type(3) {
  left: 30%;
  -webkit-animation-delay: 4s, 2s;
  animation-delay: 4s, 2s;
}
.x-mas .snowflake:nth-of-type(4) {
  left: 40%;
  -webkit-animation-delay: 2s, 2s;
  animation-delay: 2s, 2s;
}
.x-mas .snowflake:nth-of-type(5) {
  left: 50%;
  -webkit-animation-delay: 8s, 3s;
  animation-delay: 8s, 3s;
}
.x-mas .snowflake:nth-of-type(6) {
  left: 60%;
  -webkit-animation-delay: 6s, 2s;
  animation-delay: 6s, 2s;
}
.x-mas .snowflake:nth-of-type(7) {
  left: 70%;
  -webkit-animation-delay: 2.5s, 1s;
  animation-delay: 2.5s, 1s;
}
.x-mas .snowflake:nth-of-type(8) {
  left: 80%;
  -webkit-animation-delay: 1s, 0s;
  animation-delay: 1s, 0s;
}
.x-mas .snowflake:nth-of-type(9) {
  left: 90%;
  -webkit-animation-delay: 3s, 1.5s;
  animation-delay: 3s, 1.5s;
}
.x-mas .snowflake:nth-of-type(10) {
  left: 25%;
  -webkit-animation-delay: 2s, 0s;
  animation-delay: 2s, 0s;
}
.x-mas .snowflake:nth-of-type(11) {
  left: 65%;
  -webkit-animation-delay: 4s, 2.5s;
  animation-delay: 4s, 2.5s;
}

.covid-pop {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(77, 77, 77, 0.8);
  z-index: 999;
}
.covid-pop-inner {
  display: inline-block;
  position: fixed;
  margin: 15vh 20px auto;
  max-width: 360px;
}
.covid-pop-inner span {
  position: absolute;
  right: 7px;
  top: 12px;
  cursor: pointer;
  color: white;
  line-height: 0;
  font-size: 1.3rem;
  font-weight: bold;
  transition: all 0.5s ease;
}
.covid-pop-inner span:hover {
  transform: rotate(180deg);
}
.covid-pop-inner h4 {
  background: rgb(49, 147, 67);
  color: white;
  padding: 0.5em 1.5em;
  text-align: center;
}
.covid-pop-inner p {
  background: white;
  color: black;
  border: 5px solid rgb(246, 224, 52);
  margin-bottom: 0;
  padding: 0.5em 1.5em;
}
@media (min-width: 425px) {
  .covid-pop-inner {
    margin-left: calc(50vw - 180px);
    margin-top: 15vh;
  }
}
.covid-pop.show {
  display: block;
}

.contact-form label:not(#checkbox) {
  width: 100%;
}
.contact-form #checkbox {
  display: flex;
  justify-content: flex-start;
}
.contact-form #checkbox input {
  flex: 0 1 25px;
}
.contact-form #scode label {
  display: flex;
  flex-direction: column;
}
.contact-form #scode label span {
  line-height: inherit;
}
.contact-form #scode label input {
  margin-bottom: 0;
}

/*# sourceMappingURL=custom.css.map */
