/*
Theme Name:Hello Elementor : Healthhubtweedcoast
Theme URI: https://elementor.com/
Description: Child theme for Hello Elementor For Healthhubtweedcoast
Author: Your Name
Author URI: https://www.healthhubtweedcoast.com/
Template: hello-elementor
Version: 1.1
Text Domain: hello-elementor-child
*/
.box-service {
  transition: all 0.3s ease;
}

.box-service:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.header{
    transition: 
        background .35s ease,
        box-shadow .35s ease,
        transform .35s ease,
        padding .35s ease;
}

.header{
    transform: translateY(0);
}

.header.is-sticky{
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index:999;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    animation: stickySlide .35s ease;
}

@keyframes stickySlide{
    from{
        opacity:0;
        transform:translateY(-18px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}