@charset "UTF-8";
/* snippet-banner-inside-custom START */
#snippet-banner-inside-custom {
    height: auto;
    background: #fff;
    overflow: hidden;
    img {
        max-height: 250px;
    }
    .simple-gradient {
        background: linear-gradient(to bottom, #fff, #f5f5f7);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .circle-bg {
        position: absolute;
        z-index: 2;
        width: 50vh;
        height: 50vh;
        background: radial-gradient(circle, var(--md-primary-400) 0%, transparent 70%);
        border-radius: 50%;
        animation: pulse 2s infinite;
        pointer-events: none;
    }
    .circle-bg-top {
        top: -5%;
        left: -5%;
    }
    .circle-bg-bottom {
        bottom: -5%;
        right: -5%;
        animation-delay: 1s;
    }
    /* scroll down animation START */
    .scroll-indicator {
        position: absolute;
        z-index: 1090;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    .chevron {
        width: 12px;
        height: 12px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(45deg);
        animation: chevronMove 1.5s infinite;
        opacity: 0.3;
    }
    .chevron:nth-child(1) {
        animation-delay: 0s;
    }
    .chevron:nth-child(2) {
        animation-delay: 0.2s;
    }
    .chevron:nth-child(3) {
        animation-delay: 0.4s;
    }
    /* scroll down animation END */
    .banner-1 {
        background: var(--bs-gray-300);
        display: inline-block;
        padding: 3px 10px;
        border-radius: 1rem;
        font-size: 1.1rem;
    }
    .floatShadow {
        animation: floatShadow 4s ease-in-out infinite;
        transform-origin: center center;
    }
    .floatShadow ellipse {
        transform-origin: center center;
        transition: transform 0.3s ease-in-out;
    }
    img {
        animation: infinite 4s floatImg ease-in-out;
    }
}

@keyframes floatImg {
    50% { transform: translate(0, -4px) scale(1.1); }
}
@keyframes floatShadow {
    100% { transform: scaleX(1); }
    50% { transform: scaleX(1.5); }
    0% { transform: scaleX(1); }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}
@keyframes chevronMove {
    0% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(6px) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translateY(12px) rotate(45deg);
        opacity: 0;
    }
}

/* snippet-banner-inside-custom END */



