

#parallax-section {
  height: 600px;
  background-image: url("../img/services/advisor.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.parallax-content {
  max-width: 100%;
  margin-top: 3%;
}
.parallax-content h2, .parallax-content h3, .parallax-content p {
  margin: 1%;
  color: #fff;
}

#parallax-content-2 {
  position: relative;
  max-width: 50%;
  margin: 0 auto;
  height: 500px;
  margin-top: 400px;
  color: #000;
}

.gray-bg-div {
  background-color: #a2b8c5;
}

.gray-bg-div p {
  padding: 0 10%;
  font-size: 1.2em;
}

#beachside-house {
  background-image: url("../img/services/beachside-house.jpg");
  background-position: center;
  height: 700px;
}

p.big-text {
  font-size: 2em;
}

.parallax-container {
  height: 600px;
  background-image: url("../custom_files/img/services/restaurant.jpg");
  background-position: 50% 10%;
  background-repeat: no-repeat;
}

/* Bigger tablets and laptops */
@media only screen and (min-width: 769px) and (max-width: 1214px) {

  #parallax-section {
    height: 410px;
    background-image: url("../img/services/advisor.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .parallax-content {
    width: 70%;
    margin-top: 3%;
    padding: 10px;
  }

  p.big-text {
    font-size: 1em;
  }

  .gray-bg-div {
    padding: 5%;
  }
}

/* Tablets and phones */
@media only screen and (min-width: 415px) and (max-width: 769px) {

  #parallax-section {
    height: 520px;
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: 65% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .parallax-content {
    width: 100%;
    margin-top: 3%;
    padding: 10px;
  }

  p.big-text {
    font-size: 1.5em;
  }

  .gray-bg-div {
    padding: 5%;
  }


}

/* Small phones */
@media only screen and (max-width: 415px) {

  #parallax-section {
    height: 520px;
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: 75% 32%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  
  .parallax-content {
    width: 100%;
    margin-top: 3%;
    padding: 10px;
  }

  p.big-text {
    font-size: 1em;
  }

  .gray-bg-div {
    padding: 5%;
  }

}