.elementor-1927 .elementor-element.elementor-element-2b05901{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-54c30ec */@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

.my-contact-button {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    background: linear-gradient(135deg, #6E44FF, #FF44E3);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 6px 12px rgba(110, 68, 255, 0.3),
        0 -6px 6px rgba(255, 255, 255, 0.1) inset,
        0 -2px 2px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.5);
    border: none;
    overflow: hidden;
    padding: 0;
    transform-style: preserve-3d;
    perspective: 800px;
}

.my-contact-button.my-contact-right-side {
    right: 25px; /* changed from left to right */
}

.my-contact-button.my-contact-left-side {
    left: 25px; /* this is for LTR, so keep it left */
}

.my-contact-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF44E3, #6E44FF);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.my-contact-button:hover:before {
    opacity: 1;
}

.my-contact-button:hover {
    transform: scale(1.1) rotateY(10deg);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 12px 24px rgba(110, 68, 255, 0.3),
        0 -6px 6px rgba(255, 255, 255, 0.2) inset;
}

.my-contact-button:active {
    transform: scale(0.92) translateY(3px);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.2),
        0 3px 8px rgba(110, 68, 255, 0.3);
}

.my-contact-button .my-contact-icon {
    color: white;
    font-size: 28px;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    backface-visibility: hidden;
    transition: all 0.3s ease;
}

.my-contact-button:hover .my-contact-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
}

.my-contact-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transform-origin: center;
    animation: pulse 3s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.my-contact-pulse:nth-child(2) {
    animation-delay: 0.8s;
}

.my-contact-pulse:nth-child(3) {
    animation-delay: 1.6s;
    background: radial-gradient(circle, rgba(110, 68, 255, 0.6) 0%, rgba(110, 68, 255, 0) 70%);
}

@keyframes pulse {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    30% {
        opacity: 0.5;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.my-contact-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIiB4PSIwIiB5PSIwIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDUiLz48L3N2Zz4=');
    opacity: 0.4;
    mix-blend-mode: overlay;
    border-radius: 50%;
    animation: noise 10s linear infinite;
}

@keyframes noise {
    0% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(5deg) scale(1.05);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(-5deg) scale(0.95);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

.my-contact-glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.my-contact-button:hover .my-contact-glitch-overlay {
    opacity: 0.3;
}

.my-contact-glitch-overlay:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.6) 10%, transparent 15%);
    height: 100%;
    animation: glitch 4s cubic-bezier(0.55, 0.085, 0.68, 0.53) infinite;
    animation-play-state: paused;
}

.my-contact-button:hover .my-contact-glitch-overlay:before {
    animation-play-state: running;
}

@keyframes glitch {
    0% {
        transform: translateX(-100%);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translate(-5%, 0);
    }
    15%, 35%, 55%, 75%, 95% {
        transform: translate(5%, 0);
    }
    100% {
        transform: translateX(100%);
    }
}

.my-contact-panel {
    position: fixed;
    bottom: 120px;
    width: 340px;
    background: rgba(10, 10, 20, 0.9);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(110, 68, 255, 0.15),
        0 10px 20px rgba(255, 68, 227, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.5);
    transform: translateY(40px) scale(0.95);
    transform-origin: bottom center;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.my-contact-panel.my-contact-right-panel {
    right: 35px; /* changed from left to right */
    transform-origin: bottom right;
}

.my-contact-panel.my-contact-left-panel {
    left: 35px; /* this is for LTR, so keep it left */
    transform-origin: bottom left;
}

.my-contact-panel::before {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 30px;
    height: 15px;
    background: rgba(10, 10, 20, 0.9);
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: -2;
}

.my-contact-panel.my-contact-right-panel::before {
    right: 60px; /* changed from left to right */
}

.my-contact-panel.my-contact-left-panel::before {
    left: 60px; /* this is for LTR, so keep it left */
}

.my-contact-panel.my-contact-active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.my-contact-panel-header {
    background: rgba(20, 20, 40, 0.95);
    padding: 22px 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.my-contact-panel-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.my-contact-profile-area {
    display: flex;
    align-items: center;
    width: 100%;
}

.my-contact-favicon-profile {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px; /* changed from margin-left to margin-right */
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(110, 68, 255, 0.3),
        0 -2px 2px rgba(255, 255, 255, 0.2) inset;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.my-contact-favicon-profile:hover {
    transform: translateY(-3px) rotateY(10deg);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(110, 68, 255, 0.3),
        0 -2px 2px rgba(255, 255, 255, 0.3) inset;
}

.my-contact-favicon-profile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.my-contact-favicon-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transform: translateZ(5px);
    padding: 5px;
    background-color: #ffffff;
}

.my-contact-profile-info {
    color: #fff;
    text-align: left; /* for LTR */
}

.my-contact-profile-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 6px;
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.my-contact-profile-subtitle {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    color: #E0E0FF;
}

.my-contact-profile-subtitle .my-contact-status {
    width: 9px;
    height: 9px;
    background-color: #22EAAA;
    border-radius: 50%;
    margin-right: 7px; /* changed from margin-left to margin-right */
    position: relative;
    box-shadow: 0 0 10px #22EAAA;
}

.my-contact-profile-subtitle .my-contact-status::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 15px;
    height: 15px;
    background-color: #22EAAA;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.my-contact-close-panel {
    position: absolute;
    top: 17px;
    right: 15px; /* changed from left to right */
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: all 0.4s;
    backdrop-filter: blur(5px);
    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
        padding: 20px!important;
}

.my-contact-close-panel:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
    box-shadow:
        0 5px 10px rgba(0, 0, 0, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.my-contact-panel-content {
    padding: 24px;
    color: #fff;
    position: relative;
}

.my-contact-default-message {
    background: rgba(25, 25, 45, 0.4);
    padding: 18px 20px;
    border-radius: 18px;
    margin-bottom: 28px;
    border-left: 3px solid #22EAAA; /* changed from border-right to border-left */
    font-size: 14px;
    line-height: 1.8;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s ease;
}

.my-contact-default-message:hover {
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.my-contact-default-message::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), transparent); /* changed to left to right */
    transform: translateX(100%);
    transition: transform 0.6s ease-out;
}

.my-contact-default-message:hover::after {
    transform: translateX(0);
}

.my-contact-social-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.my-contact-social-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 15px;
    border-radius: 18px;
    background: rgba(25, 25, 45, 0.4);
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.my-contact-social-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.my-contact-social-button:hover::before {
    left: 100%;
}

.my-contact-social-button:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.my-contact-social-button .my-contact-icon {
    margin-right: 12px; /* changed from margin-left to margin-right */
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px;
    transition: all 0.4s;
    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.my-contact-social-button:hover .my-contact-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.my-contact-social-button .my-contact-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.instagram .my-contact-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.3);
}

.telegram .my-contact-icon {
    background: #0088cc;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.youtube .my-contact-icon {
    background: #FF0000;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.contact .my-contact-icon {
    background: #4CAF50;
    color: white;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.my-contact-star {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    filter: blur(0.5px);
}

.my-contact-star.my-contact-tiny {
    width: 1px;
    height: 1px;
    background-color: white;
    box-shadow: 0 0 2px white;
    animation: twinkle 3s infinite ease-in-out;
}

.my-contact-star.my-contact-small {
    width: 2px;
    height: 2px;
    background-color: white;
    box-shadow: 0 0 3px white;
    animation: twinkle 5s infinite ease-in-out;
}

.my-contact-star.my-contact-medium {
    width: 3px;
    height: 3px;
    background-color: #f5f5f5;
    box-shadow: 0 0 4px white;
    animation: twinkle 7s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

.my-contact-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 350 20" xmlns="http://www.w3.org/2000/svg"><path d="M0 20 C 60 0, 150 40, 300 10 L 500 20 L 0 20 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 350px 20px;
    opacity: 0.3;
    animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 350px;
    }
}

.my-contact-panel-header .my-contact-line {
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, #22EAAA, transparent);
    animation: line-move 2s linear infinite alternate;
}

@keyframes line-move {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.my-contact-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4E30B8, #CA35B4);
    opacity: 0.08;
    z-index: -1;
    filter: blur(20px);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% {
        background-position: 100% 50%;
        transform: scale(1.1);
    }
    100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .my-contact-panel {
        width: auto;
        max-width: 340px;
        margin-right: -20px; /* changed from margin-left to margin-right */
        margin-left: 8px; /* changed from margin-right to margin-left */
        left: auto;
        right: auto;
    }

    .my-contact-button.my-contact-left-side {
        right: 15px; /* changed from left to right for consistency on mobile */
    }

    .my-contact-social-buttons {
        grid-template-columns: 1fr;
    }

    .my-contact-panel-header {
        padding: 18px 16px;
    }

    .my-contact-favicon-profile {
        width: 46px;
        height: 46px;
    }
}/* End custom CSS */