

/* PARALLAX */

.container-parallax h3 {
    font-size: 50px;
    text-align: center;
    color: #F5F5F5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-1 {
    background: url('../image/parallax-1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.parallax-2 {
  position: relative;
  background: url('../image/parallax-2.webp') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.678); /* Adjust opacity here */
}

.parallax-inner {
    padding: 10% 0;
}

.container-parallax h2 {
    font-size: 32px;
    color: #cecece;
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 20px 0 10px;
}

.container-parallax  p {
    font-size: 16px;
    color: #dbdbdb;
    text-align: justify;
    line-height: 30px;
    margin: 0 50px 40px;
}

p:nth-of-type(2),
p:nth-of-type(3) {
    margin: 40px 50px;
}

