
.hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.192), rgba(75, 75, 75, 0.308)), url("churchpic.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text h1 {
    color: white;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 50px;
    padding: 20px;
}

.hero-text p {
    color: rgb(255, 255, 255);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
}

.hero-btn {
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 10px 30px;
    border-radius: 50px;
    margin-top: 10px;
    display: inline-block;
}

/* ****************************
  Card view style
*/
.content {
    padding-top: 2%;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 2%;
}

/* Float four columns side by side */
.column {
    float: left;
    width: 33%;
    padding: 0 10px;
  }
  
  /* Remove extra left and right margins, due to padding */
  .row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  @media screen and (max-width: 1400px) {
    .column {
      width: 50%;
      display: block;
      margin-bottom: 20px;
    }

    .card {
      height: 200px;
      overflow: scroll;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .content-contact {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* Responsive columns */
  @media screen and (max-width: 700px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }
  }

 
  
  /* Style the counter cards */
  .card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 16px;
    text-align:start;
    background-color: #5e5e5e;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    overflow-wrap: break-word;
  }

  #youth {
    background-image: url("youth2.jpeg");
  }

  #sun {
    background-image: url("sunJou.webp");
  }

  #buil {
    background-image: url("images/buil.jpg");
  }

  #youth:hover, #sun:hover, #buil:hover {
    background-image: linear-gradient(rgba(2, 2, 2, 0), rgba(0, 0, 0, 0.055));
  }

  .card h3 {
    color: rgb(255, 255, 255);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 30px;
  }

  .card p {
    color: rgb(255, 255, 255);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
  }

  .card button {
    margin-left: 0px;
    margin-top: 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
  }

  .card button a {
    color: white;
  }

  /* ************************
    parallax effect style
  */

  .parallax {
    /* The image used */
    background-image: url("headerImage.jpg");
  
    /* Set a specific height */
    min-height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  /* 
    contact form style
  */

  .contactForm {
    min-height: 500px;
    background-color: rgb(255, 255, 255);
    
  }

  .contactForm .column {
    float: left;
    width: 50%;
    padding: 0 10px;
    overflow: hidden;
  }

  .contactForm h1 {
    color: rgb(0, 0, 0);
    text-align: left;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 25px;
    padding: 10px;
  }

  .contactForm p {
    font-size: 15px;
    padding: 10px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
  }
  
 /* 
  top header image
 */

 .header-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.192), rgba(0, 0, 0, 0.308)), url("headerImage.jpg");
  background-position: 50% 35%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-text h1 {
  color: white;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 50px;
  padding: 20px;
}

.content-contact {
  display: flex;
  justify-content: space-around;
  padding: 5%;
  flex-direction: row;

}

.content-contact h4 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
}

.content-contact p, a {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 30px;
}