:root{
  --bg-color: #1A1A1A;
  --primary-color: #E41678;
}
html, body{
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  color: #fff;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}
::selection{
  background-color: #E41779;
}
input{
  width: 100%;
  height: 60px;
  border-radius: 5px;
  font-size: 16px;
  padding: 0 20px;
  border: none;
}
input:focus{
  outline: none;
}
textarea{
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  padding: 20px;
  border: none;
  line-height: 1.5;
}
textarea:focus{
  outline: none;
}
.title-font{
  font-family: 'Vidaloka', serif;
}
.wrapper {
  height: inherit;
  min-height: 100%;
  margin-bottom: -50px;
}
.footer{
  /*height: 60px;*/
  text-align: center;
  color: rgba(255,255,255,0.75);
  padding-bottom: 15px;
}
.footer p, .footer a{
  line-height: 30px;
  font-size: 12px;
}
.footer a{
  color: #fff;
}
button{
  display: block;
  margin: 0 auto;
  padding: 15px 40px;
  color: #fff;
  background: var(--primary-color);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border-color: var(--primary-color);
  letter-spacing: 2px;
  cursor: pointer;
}
button:focus{
  outline: none;
}
button:hover{
  background-color: #cd146c;
}


/* HERO IMAGE */
/*===========================================*/
.index .hero-image{
  position: relative;
  height: 100%;
  width: 100%;
  background: url("../images/small-girl.jpg") center top no-repeat;
  background-size: cover;
}
.opacity-container{
  position: relative;
  width: inherit;
  height: inherit;
  background-color: rgba(0,0,0,0.75);
}
.content-container{
  position: absolute;
  top: 50%;
  left: 50%;
  width: inherit;
  padding: 0 16px;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.logo{
  display: block;
  width: 50%;
  margin: 0 auto;
}

.responsive {
  max-width: 100%;
  height: auto;
}

.content-container h4{
  font-size: 18px;
  line-height: 1.5;
  margin-top: 20px;
  text-align: center;
}
.content-container p{
  line-height: 1.5;
  margin-top: 20px;
  font-weight: 300;
  text-align: center;
}
.content-container .signature{
  width: 30%;
  margin: 20px auto 20px;
  display: block;
}


/* BECOME A MODEL */
/*===========================================*/
.become-model{
  position: relative;
  width: 100%;
  height: 540px;
  background: url("../images/girl2.png") center top no-repeat;
  background-size: cover;
  margin-top: -60px;
}
.become-model .content-container{
  width: 100%;
  padding: 0 16px;
}
.become-model .content-container h5{
  width: 100%;
  text-align: center;
  font-size: 22px;
  color: var(--primary-color);
}
h1{
  width: 100%;
  text-align: center;
  font-size: 32px;
  margin-top: 10px;
}
button.dark-button{
  margin-top: 40px;
  background: var(--bg-color);
  padding: 15px 60px;
}

/* CONTACT US */
/*===========================================*/
.contact .hero-image{
  width: 100%;
  height: auto;
  background: url("../images/contact.jpg") center top no-repeat;
  background-size: cover;
}
.contact .opacity-container{
  background-color: rgba(0,0,0,0.54);
  padding: 40px 0;
}
.contact-us{
  padding: 40px 0;
  margin: 0 auto;
  width: auto;
}
.form-container{
  width: 100%;
}
.form-container div{
  position: relative;
  padding: 0 10px;
  margin-bottom: 20px;
}
.email-us{
  text-align: center;
  margin-top: 30px;
  line-height: 1.5;
}
.email-us a{
  color: #fff;
}
.contact-us h1{
  margin-top: 0;
  margin-bottom: 20px;
}
.error-message{
  display: none;
  position: absolute !important;
  width: auto;
  bottom: 10px;
  right: 20px;
  text-align: right;
  color: var(--primary-color);
  margin-bottom: 0 !important;
  padding: 0 !important;
  font-size: 12px;
}
.form-container > div.has-error .error-message {
  display: block;
}
input.attach{
  background-color: #fff;
  color: #999;
  padding: 18px 13px;
  height: auto;
}
.message-sent {
  text-align: center;
  padding-bottom: 18px;
  display: none;
}




/*Extra small devices (portrait phones, less than 576px)*/
/*No media query for `xs` since this is the default in Bootstrap*/

/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
  .content-container{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    padding: 0 16px;
    transform: translate(-50%, -50%);
  }
  .become-model .content-container{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    padding: 0 16px;
    transform: translate(-50%, -50%);
  }
  .footer p, .footer a{
    font-size: 16px;
  }
}

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
  .content-container h4{
    font-size: 24px;
  }
  .content-container p{
    font-size: 20px;
  }
  .become-model{
    height: 640px;
  }
  .become-model .content-container h5{
    font-size: 28px;
  }
  h1{
    font-size: 40px;
  }
  button{
    padding: 25px 75px;
    font-size: 16px;
  }
  button.dark-button{
    padding: 25px 75px;
    font-size: 16px;
  }
  .footer p, .footer a{
    font-size: 18px;
  }
  .contact-us{
    width: 700px;
  }
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
  .index .hero-image{
    background: url("../images/girl.jpg") center top no-repeat;
    background-size: cover;
  }
  .opacity-container{
    background-color: transparent;
  }
  .content-container{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    padding: 0 16px;
    transform: translateY(-50%);
  }
  .become-model .content-container{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    padding: 0 16px;
    transform: translate(-50%, -50%);
  }
  .index .content-container .logo, .index .content-container .signature, .index .content-container button{
    margin-left: 0;
  }
  .index .content-container .signature{
    width: 180px;
  }
  .index .become-model .content-container button{
    margin-left: auto;
  }
  .content-container h4, .content-container p{
    text-align: left;
  }
  .become-model .content-container p{
    text-align: center;
  }
  .footer p, .footer a{
    font-size: 20px;
    line-height: 40px;
  }
  .contact .hero-image{
    height: 360px;
  }
  .contact .hero-image img{
    height: 100%;
    width: auto;
  }
  .contact-us{
    width: 900px;
    padding-top: 80px;
  }
  .half{
    width: 50%;
    float: left;
    z-index: 100;
  }
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
  .become-model{
    height: 720px;
    margin-top: -100px;
  }
  .become-model .content-container{
    margin-top: 50px;
  }
  .contact-us{
    width: 1100px;
  }
  .footer{
    padding-top: 20px;
  }
}
