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

body {
  font-family: "Josefin Sans", sans-serif;
  line-height: 1.5;
  padding: 20px;
  height: 100%;
  background: white;
  margin: 0;
}
/* ----------------------------------- */
/* Home */
/* ----------------------------------- */
.df-content-wrapper {
  width: 100%;
  height: 100%;
  background: #ffffff;
}

.df-content {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.df-content > * {
  position: relative;
  z-index: 10;
}

.df-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
}

/********************
Content
*********************/
.df-main {
  text-align: center;
  padding: 20px;
}


/* ----------------------------------- */
/* Details */
/* ----------------------------------- */
html.df-modal-active {
  overflow: hidden;
}

.df-modal {
  position: fixed;
  z-index: -999;
}

.df-modal .df-modal-overlay {
  opacity: 0;
  transition: all 500ms ease;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 0;
  left: 0;
}

.df-modal .df-modal-content {
  transform: translate3d(0, -200%, 0);
  transition: all 500ms ease;
  text-align: center;
  position: fixed;
  top: 25vh;
  left: 0;
  right: 0;
  margin: auto;
  width: 500px;
  max-width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  background: #f0f0f0;
  color: rgb(25, 25, 25); /*discription text (please fill form and I'll be in touch shortly)*/
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.df-modal .df-modal-content h2 {
  margin: 0;
  text-transform: uppercase;
  color: #445b63;
}

.df-modal .df-modal-content p {
  margin: 0 0 20px 0;
  font-weight: 300;
}

.df-modal-active .df-modal .df-modal-overlay {
  opacity: 1;
}

.df-modal-active .df-modal .df-modal-content {
  transform: translate3d(0, 0, 0);
}

/* ----------------------------------- */
/* FORMULAIRE */
/* ----------------------------------- */
.df-input-box {
  position: relative;
}

.df-form input[type="subject"],
.df-form textarea {
  width: 100%;
  padding: 15px;
  display: block;
  margin-bottom: 5px;
  border: 0;
  outline: 0;
  background: #ffffff;
  color: rgb(44, 44, 44);
}

.df-form input[type="submit"] {
  display: block;
  border-radius: 5px;
  width: 100%;
  border: 0;
  margin: 20px 0 0 0;
  background-color: #c48c35;
  color: #fff;
  padding: 15px 0;
}

.df-form input:focus,
.df-form textarea:focus {
  color: rgb(40, 40, 40); /*cursor placement highlight*/
}

.df-form input:required ~ label,
.df-form input:focus:valid ~ label,
.df-form input:focus:invalid ~ label,
.df-form textarea:required ~ label,
.df-form textarea:focus:valid ~ label,
.df-form textarea:focus:invalid ~ label {
  display: block;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 1.5rem;
  font-weight: bold;
}

.df-form input:required:focus:valid ~ label::before,
.df-form input:focus:valid ~ label::before,
.df-form textarea:required:focus:valid ~ label::before,
.df-form textarea:focus:valid ~ label::before {
  content: '✔';
  color: #47b195;
  font-size: 1.5em;
}

.df-form input:required:focus ~ label::before,
.df-form input:focus:invalid ~ label::before,
.df-form textarea:required:focus ~ label::before,
.df-form textarea:focus:invalid ~ label::before {
  content: '✘';
  color: #e64e5f;
  font-size: 1.5em;
}

.df-form input:valid ~ label::before,
.df-form textarea:valid ~ label::before {
  content: '✔';
  color: #47b195;
  font-size: 1.5em;
}




input[type="button"],
.df-contact {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  background-color: transparent;
  border-radius: 0.5em;
  border: solid 1px rgba(144, 144, 144, 0.25) !important;
  color: #545454 !important;
  cursor: pointer;
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  height: 3.5em;
  letter-spacing: 0.1em;
  line-height: 3.5em;
  overflow: hidden;
  padding: 0 2em;
  text-align: center;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
input[type="button"]:hover,
.df-contact:hover {
  background-color: rgba(144, 144, 144, 0.075);
  color: #545454 !important;
}
input[type="button"]:active,
.df-contact:active {
  background-color: rgba(144, 144, 144, 0.2);
}