#slider-div {
  padding: 10%;
  background-color: #555;
}
.full-slider { position: relative; }
.full-slider > ul {
  padding: 0;
  list-style: none;
  position: relative;
  margin: 0;
  white-space: nowrap;
  font-size: 0;
  overflow: hidden;
}
  .full-slider > ul > li {
    display: inline-block;
  }
.full-slider > .controls {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row;
  padding: 2rem;
}
  .full-slider > .controls .action-prev,
  .full-slider > .controls .action-next {
    margin: 0 -50%;
    color: white;
    font-size: 200%;
    background: none;
    border: none;
    transition-duration: 0.3s;
  }
  .full-slider > .controls .action-prev:hover,
  .full-slider > .controls .action-next:hover {
    color: var(--background1);
    text-shadow: 0 5px 10px -5px #ffffff77;
  }

@media screen and (max-width:500px) {
  #slider-div {
    padding: 0;
  }
  .full-slider > .controls {
    padding: 5px;
  }
  .full-slider > .controls .action-prev,
  .full-slider > .controls .action-next {
    font-size: 150%;
  }
  .d-mobile{
    display: block;
  }
  .d-desktop {
    display: none;
  }			
}
@media screen and (min-width:500px) {
  .d-mobile {
    display: none;
  }
  .d-desktop {
    display: block;
  }
}

#landing_contact button[type="submit"] {
  color: white;
  background: #ff9f00;
  padding: 0.5rem 1.5rem;
  box-shadow: inset 0 -5px 10px -7px rgba(0,0,0,0.5), 0 5px 10px -5px rgba(0,0,0,0.55), 0 3px 5px -3px rgba(0,0,0,0.75);
  border-radius: 3rem;
  transition-duration: 0.3s;
}
  #landing_contact button[type="submit"]:hover {
    background: black;
  }

#landing_contact input[type="text"],
#landing_contact input[type="text"]:focus-visible,
#landing_contact input[type="email"],
#landing_contact input[type="email"]:focus.visible {
  border: none;
  border-bottom: 2px solid #333;
  border-radius: unset;
  padding: 1rem 0;
  outline: none !important;
}

::placeholder {
  color: #333;
}