/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/
p {
	margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}


/* Button */
.bricks-button {
	position: relative;
    z-index: 1;
}

.bricks-button.bricks-background-dark::before {
	position: absolute;
    content: "";
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    background: #ffde5d;
    transform: scale(0);
    transition: .5s;
}


.bricks-button.bricks-background-dark:hover::before {
	transform: scale(1);
}

.btn-transparent.bricks-button {
	background: transparent !important;
	padding: 0;
	text-decoration: underline;
	display: block;
	color: #101210;
	transition: all 0.3s;
}

.btn-transparent.bricks-button i {
	margin-left: 10px;
	transform: rotate(-45deg);
}

.btn-transparent.bricks-button:hover {
	color: #ffde5d;
}

.moveLeftBounce {
    animation: moveLeftBounce 4s linear infinite;
}
@keyframes moveLeftBounce {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes moveleftbounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}
@keyframes MOVIE-BG {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(60px);
        transform: translateX(60px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.rotateme {
    animation-name: rotateme;
    animation-duration: 20s;
}
@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.dance {
    animation: dance 2s alternate infinite;
}
@keyframes dance {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}

.dance2 {
    animation: dance2 4s alternate infinite;
}
@keyframes dance2 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
    }

    50% {
        -webkit-transform: translate3d(25px, -25px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, -25px, 25px);
    }
}

.dance3 {
    animation: dance3 8s alternate infinite;
}
@keyframes dance3 {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}




.admin-bar header > .brxe-section {
	top: 32px !important;
}

.home-banner-content h1::before {
	position: absolute;
    content: "";
    right: 0px;
    top: 0;
    width: 22%;
    height: 50%;
	background-image: url(https://new.py-media.com/wp-content/uploads/2024/11/hero-shap3.png);
    background-repeat: no-repeat;
    background-position: right;
    background-position: right;
}

.home-banner-content h1 span {
	position: relative;
}

.home-banner-content h1 span::before {
	position: absolute;
    content: "";
    left: 0px;
    top: 8px;
    width: 100%;
    height: 87%;
    background: url(https://new.py-media.com/wp-content/uploads/2024/11/shap4.png);
    background-repeat: no-repeat;
    background-position: left;
}


