.why-us-feature {
    transition: all 0.5s ease;
    background-color: #bce8ff;
}

.why-us-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg, 
        var(--accent) 0%, 
        var(--accent) 40%, 
        var(--accent-dark) 100%
    );
    opacity: 0;
    transition: opacity 1s ease;
    z-index: -1;
    border-radius: 0.5rem;
}

.why-us-feature:hover::before {
    opacity: 1;
}

.why-us-feature:hover {
    scale: 1.13;
}

.why-us-feature .hover-par-highlight {
    position: relative;
    z-index: 10;
}

.why-us-feature .hover-par-highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--accent);
    mask: url('/images/brushstroke.svg') no-repeat center / contain;
    -webkit-mask: url('/images/brushstroke.svg') no-repeat center / contain;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-us-feature:hover .hover-par-highlight::before {
    opacity: 0.7;
}

.why-us-feature:hover .hover-par-highlight {
    z-index: 10;
    /* background-image: url('/images/brushstroke.svg');
    background-size: contain; */
    
}

.dynamic-gradient {
    position: relative;
    overflow: hidden;
    --blob-x: 0px;
    --blob-y: 0px;
}

.blob {
    position: absolute;
    top: 0; left: 0;
  
    
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 195, 0, 0.5);

    pointer-events: none;
    
    transform: translate(
      calc(var(--blob-x) - 100px),
      calc(var(--blob-y) - 100px)
    );
    filter: blur(120px);
    
    transition: transform 0.1s ease-out,
                opacity   0.2s ease-out;
    opacity: 0;
}

.dynamic-gradient:hover .blob {
    opacity: 0.5;
}

/* .dynamic-gradient::before {
    content: "";
    inset: 0;

    background: linear-gradient(
        var(--grad-angle),
        rgba(255, 255, 255, 0) 20%,
        rgba(255, 255, 255, 0.5) 40%,
        rgba(255, 255, 255, 0) 60%,
        rgba(255, 255, 255, 0) 100%
    );
    position: absolute;
    overflow: hidden;
} */

.pipe-bg {
    background-image: url("/images/pipe_background.png");
    background-size: contain;
}


@keyframes fadeUpMoveRight {
    0% {
        opacity: 0;
        transform: translate(calc(-50vw + var(--hero-header-container-width) / 2), 50px);
    }
    /* 50% {
        opacity: 1;
        transform: translate(calc(-50vw + var(--hero-header-container-width) / 2), 0);
    }
    60% {
        opacity: 1;
        transform: translate(calc(-50vw + var(--hero-header-container-width) / 2), 0);
    } */
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(0.5em, 0.5em);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}


.hero-container {
    --hero-header-container-width: 100vw;
    background: 
        url("images/Masis2.png") left bottom / cover no-repeat;
}


@keyframes revealFromTop {
    to {
        clip-path: inset(0 0 0 0);
    }
}

.hero-container::after {
    content: '';
    display: block;
    opacity: 1;
    background-image:    url("images/road_primary3.svg");
    background-repeat:   no-repeat;
    background-position: left bottom;
    background-size:     100% 100%;
    position: absolute;
    top: 60%;
    right: calc(100vw - 350px);
    bottom: 0;
    left: 0;
    pointer-events: none;
    mask-image: linear-gradient(
        to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,1) 30%, 
        rgba(0,0,0,1) 100%
    );
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
    clip-path: inset(100% 0 0 0);
    -webkit-clip-path: inset(100% 0 0 0);
    animation: revealFromTop 2.5s ease-out 2.5s forwards;
}

.hero-container .hero-header-container {
    display: flex;
    justify-content: center;
    position: absolute;
    padding: 30px 30px 60px 30px;
    width: var(--hero-header-container-width);
    top: 0;
    bottom: 0;
}

.noto-sans-armenian-bold {
    font-family: "dzeragir", sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.hero-container .hero-header {
    font-size: 3rem;
    color: var(--accent);
    text-align: center;
    text-wrap: nowrap;
    /* opacity: 0;
    transform: translate(calc(50vw - var(--hero-header-container-width) / 2), 50px);
    animation: fadeUpMoveRight 2s ease-out 0.3s forwards; */
    text-shadow: 
        3px 3px 0 var(--primary), 
        6px 6px 0 black;
}

@media (min-width: 768px) {
    .hero-container .hero-header {
        font-size: 6vw;
    }

    .hero-container::after {
        top: 60%;
        right: calc(100vw - 600px);
    }
}

.hero-container .hero-header span {
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: var(--delay);
}

.hero-container .hero-header span.space {
    display: inline-block;
    width: 0.5em;
    animation: none;
}