@charset "utf-8";
/* CSS Document */



* {
  box-sizing: border-box;
}

.newsp {
  color: #fff;
}
.newsp a {
  color: rgba(255, 255, 255, 0.5);
}

.newsform {
  position: relative;
  margin: 10px auto auto 10px;
  width: 400px;
  height: 50px;
}
.apartment-one__title{
  color:#fff !important;
}
.section-title.text-center{
  margin-bottom: 30px;
}
.newsinput {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  border: 1;
  border-radius: 4px;
  background: #333E48;
	border-style: solid;
	border-color: goldenrod;
  outline: 0;
  padding: 2em 1em 1em 1em;
  color: #fff;
	cursor: pointer;
  font-size: 1em;
  transition: background 0.35s ease-out;
}
.newsinput::-webkit-input-placeholder {
  color: #fff;
  text-transform: capitalize;
}
.newsinput:-moz-placeholder {
  color: #fff;
  text-transform: capitalize;
}
.newsinput::-moz-placeholder {
  color: #fff;
  text-transform: capitalize;
}
.newsinput:-ms-input-placeholder {
  color: #fff;
  text-transform: capitalize;
}
.newsinput:focus {
  background: #044f9e;
}
.newsinput:focus + label {
  -webkit-transform: translateY(-10px) scale(0.8);
          transform: translateY(-10px) scale(0.8);
  color: #6da6df;
}
.newsinput:focus + label + button {
  opacity: 1;
}

.newslabel {
  position: absolute;
  left: 1em;
  top: 50%;
  margin-top: -8px;
  color: #fff;
  text-transform: capitalize;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  transition: color 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, color 0.25s ease-out;
  transition: transform 0.25s ease-out, color 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.newsbutton {
  position: absolute;
  right: 0;
  width: 120px;
  height: 100%;
  border: 0;
  border-radius: 4px;
  font-size: 1em;
  background: #065cb7;
  color: #044f9e;
  cursor: pointer;
  opacity: 0;
  outline: none;
  transition: opacity 0.35s ease-out, width 0.5s ease-out, background 0.25s ease-out;
}

.newsbutton.is-active {
  background: #5c94cd;
  color: #fff;
}

.newsbutton.is-done {
  width: 100%;
  opacity: 1;
}


@media screen and (max-width: 768px) {
  .newsform {
  position: relative;
  margin: 10px auto auto 10px;
  width: 270px;
  height: 50px;
}

}   
