.mobile-menu-backdrop {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9998;
}
.mobile-menu-container {
display: none; position: fixed;
z-index: 9999;
background-color: #ffffff;
overflow-y: auto;
} .mobile-menu-container.animation-top {
top: 0;
left: 0;
width: 100%;
height: 100%;
} .mobile-menu-container.animation-left {
top: 0;
left: 0;
width: 85%;
height: 100%;
} .mobile-menu-container.animation-right {
top: 0;
right: 0;
width: 85%;
height: 100%;
}
.elementor-menu-toggle {
display: none;
cursor: pointer;
padding: 10px;
}
@media (max-width: 768px) {
.elementor-menu-toggle {
display: block;
}
}
.mobile-menu-image {
max-width: 100%;
height: auto;
margin-bottom: 20px;
}
.mobile-menu-container ul {
list-style: none;
padding: 0;
margin: 0;
}
.mobile-menu-container li {
padding: 0;
border-bottom: 1px solid #eee;
position: relative;
}
.mobile-menu-container li a {
text-decoration: none;
font-size: 16px;
display: block;
padding: 15px;
width: 100%;
position: relative;
z-index: 1;
}
.mobile-menu-container li:hover {
background-color: rgba(0, 0, 0, 0.05);
} .menu-close {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
cursor: pointer;
z-index: 9999;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
}
.elementor-menu-toggle {
display: none;
cursor: pointer;
padding: 10px;
text-align: center;
}
.elementor-menu-toggle i,
.elementor-menu-toggle svg {
display: inline-block;
vertical-align: middle;
transition: all 0.3s ease;
}
.elementor-menu-toggle img {
display: inline-block;
vertical-align: middle;
height: auto;
object-fit: contain;
}
@media (max-width: 768px) {
.elementor-menu-toggle {
display: block;
}
}.animated-image {
display: block;
max-width: 100%;
height: auto;
} .ai-rotate {
animation: rotate linear infinite;
}
@keyframes rotate {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
} .ai-flip {
animation: flip ease-in-out infinite;
}
@keyframes flip {
0% {
transform: rotate(90deg);
}
50% {
transform: rotate(-90deg);
}
100% {
transform: rotate(90deg);
}
} .ai-heartbeat {
animation: heartbeat ease-in-out infinite;
}
@keyframes heartbeat {
0% {
transform: scale(1.2);
}
50% {
transform: scale(0.8);
}
100% {
transform: scale(1.2);
}
}
.ai-circle {
animation: circle linear infinite;
transform-origin: center;
position: relative;
display: inline-block;
}
@keyframes circle {
from {
transform: rotate(0deg) translateX(30px) rotate(0deg);
}
to {
transform: rotate(360deg) translateX(30px) rotate(-360deg);
}
}
.ai-wave {
animation: wave ease-in-out infinite;
}
@keyframes wave {
0% { transform: translateY(0) translateX(0) rotate(0deg); }
25% { transform: translateY(-5px) translateX(5px) rotate(1deg); }
50% { transform: translateY(0) translateX(0) rotate(0deg); }
75% { transform: translateY(5px) translateX(-5px) rotate(-1deg); }
100% { transform: translateY(0) translateX(0) rotate(0deg); }
}