section[data-cattype="609"]{
    background-attachment: fixed !important;
    background-position: center !important;
    background-repeat: no-repeat !important;  
    background-size: cover !important;
}

[data-cattype="609"] .ovl-bg{
	position: relative;
    width: 100%;
    top: 0;
	padding:40px 0;
}

[data-cattype="609"] ul.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 30px;
    z-index: 1;
}

[data-cattype="609"] ul.grid li{
    width: calc(33% - 20px);
    margin: 0 10px 20px;
    border: 1px solid #eee;
    background: #f7f7f7;
    padding: 30px;
    position: relative;
    transition: all .2s ease-in;
}

[data-cattype="609"] ul.grid li:hover {
    background: #46cb4d;
    border: 1px solid #46cb4d;
}

[data-cattype="609"] ul.grid li.service-box:hover > div{
    color: #fff;
    border-left: 3px solid #fff;
}

[data-cattype="609"] ul.grid li.service-box > div{
    border-left: 3px solid #46cb4d;
    padding-left: 20px;
    color: #808080;
    margin-bottom: 0;
}

[data-cattype="609"] .service-box::after {
    background: transparent;
}



/* WAVE */

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1)
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55)
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1)
    }
}
.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 0;
}
.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
}
.bgTop {
    z-index: 15;
    opacity: 0.5;
}
.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}
.bgBottom {
    z-index: 5;
}
.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}
.waveTop {
    background-size: 50% 100px;
}
.waveAnimation .waveTop {
  animation: move-wave 3s;
   -webkit-animation: move-wave 3s;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
}
.waveMiddle {
    background-size: 50% 120px;
}
.waveAnimation .waveMiddle {
    animation: move_wave 20s linear infinite;
}

.waveAnimation .waveMiddle.v2 {
    animation: move_wave 15s linear infinite;
      opacity: 0.6;
}
.waveAnimation .waveMiddle.v3 {
    animation: move_wave 10s linear infinite;
    opacity: 0.3;
}

.waveBottom {
    background-size: 50% 100px;
}
.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}







/* Typical laptop screen size*/
@media (max-width: 1400px) {
	
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 980px) {
	[data-cattype="609"] ul.grid li{
        width: calc(50% - 20px);
        margin: 10px;
    }
}

/* Mobile screen size - landscape view */
@media (max-width: 767px) {
   [data-cattype="609"] ul.grid li{
        width: 100%;
        margin: 0 0 20px;
    }
}

/* Mobile screen size */
@media (max-width: 480px) {
      
}