.rst-hook-wrapper {
    
}
.rst-banner-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    height: 100%;
}
.homeBanner1-layout-2 {
    grid-template-columns: 1fr 1fr;
}
.homeBanner1-layout-3 {
    grid-template-columns: repeat(3,1fr);
}

.homeBanner1-layout-3>.rst-banner-wrapper {
    border: 4px solid rgba(255,255,255,.05);
}
@media (min-width: 768px) {
    .homeBanner1-layout-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rst-banner-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,.6);
    border-radius: 5px;
}

.rst-banner-bg-video,
.rst-banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.rst-banner-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rst-banner-content {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 2;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.rst-banner-content p {
    display: flex;
    column-gap: 5px;
    margin: 0;
    font-family: 'Atma', sans-serif;
    font-weight: 600;
    font-size: clamp(.9rem, 2vw, 1.1rem);
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    filter: drop-shadow(0px 0px 15px white);
}
.rst-banner-content p strong{
    font-family: 'Atma', sans-serif;
}
.rst-banner-content p img {
    padding: 3px;
}

.home-banner-container {
    display: grid;
    width: 100%;
}
.home-layout-1 {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.home-layout-2 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}

.home-layout-3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

.home-layout-4 {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
}

.home-layout-5 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
}

.home-layout-6,
.home-layout-7,
.home-layout-8,
.home-layout-9,
.home-layout-10 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 200px);
}

.home-layout-5 > .banner:nth-child(1),
.home-layout-7 > .banner:nth-child(1),
.home-layout-9 > .banner:nth-child(1),
.home-layout-10 > .banner:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.home-layout-7 > .banner:nth-child(4),
.home-layout-9 > .banner:nth-child(5),
.home-layout-10 > .banner:nth-child(6) {
  grid-column: span 2;
}

.home-layout-6 > .banner:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.rst-countdown-wrapper {
    display: none;
    padding: 2px 8px;
    background: black;
    border-radius: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 5px;
}
span.rst-countdown-label {
    color: white;
}
span.rst-countdown-label.rst-urgent-text {
    font-family: 'Atma', sans-serif;
}
.rst-countdown {
    display: flex;
    gap: 3px;
    font-family: 'Atma', sans-serif;
    font-weight: 600;
    color: yellow;
}

.rst-alert-ultimate {
    display: inline-block;
    margin: 0 2px;
    animation: rstUltimate 1s infinite ease-in-out;
}

@keyframes rstUltimate {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.6);
    }
    10% {
        transform: translate(-1.2px, 0.9px) rotate(-0.5deg) scale(1.03);
        text-shadow: 0 0 7px rgba(255, 0, 0, 0.7);
    }
    20% {
        transform: translate(1.4px, -1.2px) rotate(0.6deg) scale(1.07);
        text-shadow: 0 0 9px rgba(255, 0, 0, 0.85);
    }
    30% {
        transform: translate(-1.6px, 1.1px) rotate(-0.7deg) scale(1.1);
        text-shadow: 0 0 12px rgba(255, 0, 0, 1);
        color: red;
    }
    40% {
        transform: translate(1.3px, -1.5px) rotate(0.5deg) scale(1.08);
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.9);
    }
    50% {
        transform: translate(-1.1px, 1.4px) rotate(-0.4deg) scale(1.05);
        text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
    }
    60% {
        transform: translate(1.5px, -1.3px) rotate(0.6deg) scale(1.03);
        text-shadow: 0 0 7px rgba(255, 0, 0, 0.7);
    }
    70% {
        transform: translate(-1.3px, 1px) rotate(-0.5deg) scale(1.02);
        text-shadow: 0 0 6px rgba(255, 0, 0, 0.65);
    }
    80% {
        transform: translate(1.2px, -0.9px) rotate(0.4deg) scale(1.01);
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.6);
    }
    90% {
        transform: translate(-0.8px, 0.7px) rotate(-0.3deg) scale(1);
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.55);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.6);
    }
}


