
/** ADD YOUR AWESOME CODES HERE **/

/* image zoom effect */
.image-container img {
    transition: transform 0.3s ease-in-out;
}
.image-container img:hover {
    transform: scale(1.1);
}

.parallax-imgbg{
    /* The image used */
    background-image: url("../images/background/iStock-1127069581-2298x1304.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;
  }

body{
    background-image: url("../images/background/iStock-1127069581.jpg");
}

section{
    background-color: rgba(130, 185, 239, 0.7);
    padding: 70px 0;
}

.icon-box-hmv-custom{
    border: 3px solid #e3eff0;
}

.icon-box-hmv-custom i{
    color: #10467b;
}

.page_404_custom {
    margin-top: -30px;
    font-family: "Arvo", serif;
}
