/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

.header-button {
    position: relative;
    padding-right: 50px !important;
    padding-left: 30px !important;

}

.header-button::after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23000000"><path d="m560-240-56-58 142-142H160v-80h486L504-662l56-58 240 240-240 240Z"/></svg>');
    position: absolute;
    right: 20px;
    top: 55%;
    transform: translateY(-50%);
}

.animation-typing {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100px;
}

.animation-typing .group>div {
    opacity: 0;
}

.text-cursor {
    display: 'flex';
    animation: AnimateTextCursor 400ms none infinite alternate;
}

.text-cursor.fast {
    animation: AnimateTextCursor 100ms none infinite alternate;
}

.animation-opacity,
.animation-paragraph span {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}


@keyframes AnimateTextCursor {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media (width <=550px) {
    .animation-typing {
        min-height: 80px;
    }

    .text-cursor {
        display: none;
        animation: AnimateTextCursor 400ms none infinite alternate;
    }
}

@media (width >=750px) {}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.page-title, .entry-header {
	display: none !important;
	opacity: 0
}

.circle.decoration {
    position: absolute;
    z-index: -1;
    width: 50%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(270deg, #00ffcc91, #334ba9);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    opacity: 0.25;
  }