body, html {
    height: 100%;
    margin: 0;
    font: 400 15px/1.8 "Lato", sans-serif;
    color: #777;
  }
  
  .bgimg-1, .bgimg-2, .bgimg-3 {
    position: relative;
    opacity: 0.65;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
  }
  .bgimg-1 {
    background-image: url("../img/1.jpg");
    min-height: 100%;
  }
  
  .bgimg-2 {
    background-image: url("../img/5.jpg");
    min-height: 100%;
  }
  
  .bgimg-3 {
    background-image: url("../img/3.jpg");
    min-height: 100%;
  }
  
  .caption {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    color: #000;
  }
  
  .caption span.border {
    background-color: #111;
    color: #fff;
    padding: 18px;
    font-size: 25px;
    letter-spacing: 10px;
  }
  h2 {
    letter-spacing: 5px;
    text-transform: uppercase;
    font: 20px "Lato", sans-serif;
  
    color: rgb(255, 255, 255);
  }
  
  h3 {
    letter-spacing: 5px;
    text-transform: uppercase;
    font: 20px "Lato", sans-serif;
    color: #111;
  }
  
  /*FORM*/
  
  #regForm {
  
    margin: 100px auto;
    padding: 40px;
    width: 70%;
    min-width: 300px;
  }
  
  h1 {
    text-align: center;  
  }
  
  input, textarea {
    padding: 10px;
    width: 100%;
    font-size: 17px;
  
    border: 1px solid #aaaaaa;
  }
  
  
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  button {
    background-color: #5d615f;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
  
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.8;
  }
  
  #prevBtn {
    background-color: #bbbbbb;
  }
  
  /* Make circles that indicate the steps of the form: */
  .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;  
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: #04AA6D;
  }
  
  
  /* Turn off parallax scrolling for tablets and phones */
  @media only screen and (max-device-width: 1024px) {
    .bgimg-1, .bgimg-2, .bgimg-3 {
      background-attachment: scroll;
    }
  }
  
  /*CONTACT*/
  .social-media {
    margin-top: 30px;
  }
  
  .social-media a {
    margin-right: 10px;
  }
  
  .field:not(:last-child) {
    margin-bottom: 20px;
  }
  
  @media screen and (min-width: 768px) {
    body {
      padding-top: calc(3.25rem + 20px);
    }
  
    .navbar {
      padding: 10px 0;
      position: fixed;
      top: 0;
      width: 100%;
    }
  
    .hero.is-fullheight {
      min-height: calc(100vh - 6.5rem - 40px);
    }
  }