/*
	Theme Name: IML By Webspark
	Template:   kadence
	Version: 1.0.3
	Author: Ehab Hamzeh (ehab1mail@gmail.com)
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
.header-social>*{
 	position:relative;   
}
.header-social>*:hover * {
 	color:#fff;   
}
.header-social>*:before {
    content: "";
    background: var(--global-palette-btn-bg);
    width: 100%;
    height: 100%;
    position: absolute;
    top:0px;
    left:0px;
    border-radius:50%;
    transform:scale(0);
    transition:all 0.5s;
    z-index:-1;
}
.header-social>*:hover:before {
    transform:scale(1);
}
button.kb-button.kb-btn-global-outline {
    border:solid 0px;
}
.trp-language-switcher{
    margin-top: 4px;
}
.trp-language-switcher, .trp-language-switcher * {
    padding: 0px !important;
}
.trp-shortcode-switcher__wrapper{
 	line-height:17px;   
}
.n2-ss-layer *{
        font-family: var(--global-body-font-family) !important;
}
.n2-ss-slide-active .eh-root-text > div > * {
    animation-name: myAnimation;
  	animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity:0;
}
.n2-ss-slide-active .eh-root-text > div > *:nth-child(2){
 	animation-delay: 0.5s;   
}
.n2-ss-slide-active .eh-root-text > div > *:nth-child(3){
 	animation-delay: 1s;   
}
.n2-ss-slide-active .eh-root-text > div > *:nth-child(4){
 	animation-delay: 1.5s;   
}
@keyframes myAnimation {
  0%   {
    transform:translateY(100px);
      opacity:0;
    }
  100% {
    transform:translateY(0px);
      opacity:1;
    }
}
.add_social ul.wp-block-social-links{
    justify-content: left;
}
.hover_stars:before, .hover_stars:after {
    z-index: 1;
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 1s;
    transform: scale(0.5);
    background-size: contain;
}
.hover_stars:before {
    background-image: url(assets/imgs/pattern1.png);
    height: 100%;
    top: -30px;
    left: -30px;
    width: 100%;
}
.hover_stars:after {
    background-image: url(assets/imgs/pattern2.png);
    height: 290px;
    bottom: -40px;
    right: -30px;
    width: 250px;
}
.hover_stars:hover:before, .hover_stars:hover:after, .hover_stars.featured-active:before, .hover_stars.featured-active:after {
    opacity: 1;
    transform: scale(1);
}
.site-footer {
    position: relative !important;
}
.animated-icon-shape { position: absolute !important; top: 0; width: 100%; height: 100%; left: 0; z-index: -1 !important; }
.animated-icon-shape >*{min-height: 100%;}
.animated-icon-shape >*>*{position:absolute;}
.animated-icon-shape >*>*:nth-child(1) { left: 6%; top: 10%;animation: small-animation 2s infinite linear }
.animated-icon-shape >*>*:nth-child(2) { left: 2%; bottom: 15%; animation: small-animation2 2s infinite linear;}
.animated-icon-shape >*>*:nth-child(3) { right: 6%; top: 5%; animation: small-animation2 2s infinite linear;}
.animated-icon-shape >*>*:nth-child(4) { right: 2%; bottom: 20%; animation: small-animation 2s infinite linear}
.animated-icon-shape img {
    max-width: 65px;
}
@keyframes small-animation {
0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}
50% {
    transform: translate(0px, 10px);
    -webkit-transform: translate(0px, 10px);
}
100% {
    transform: translate(0, 10);
    -webkit-transform: translate(0, 10);
}
}

@keyframes small-animation2 {
0% {
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}
50% {
    transform: translate(10px, 0px);
    -webkit-transform: translate(10px, 0px);
}
100% {
    transform: translate(10,0);
    -webkit-transform: translate(10,0);
}
}
.scroll-container {
  width: 100%; /* Or a specific width */
  overflow: hidden;
  white-space: nowrap; /* Prevents text from wrapping to the next line */
  box-sizing: border-box;
}
.scroll-container:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #ffffff;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 100%);
}
.scroll-container *{
 	width:fit-content;
    font-size:130px !important;
}
.scroll-container > *{
 /* Starts the text fully off-screen to the right */
  animation: scroll-left 80s linear infinite; /* Apply the animation */
}

/* Define the animation named 'scroll-left' */
@keyframes scroll-left {
  0% {
    transform: translateX(0); /* Initial position (off-screen right) */
  }
  100% {
    transform: translateX(-50%); /* Final position (moves left by the text's full width) */
  }
}