<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CTA link / HOVER : Linkk glows and shake  */
.lai-cta-glow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
    color: var(--lai-color-blue);
    background-color: rgba(77, 192, 252, 0.075);
    text-shadow: none;
    cursor: pointer;
    box-shadow: transparent;
    border: 1px solid var(--lai-color-blue);
    transition: 0.5s ease;
    user-select: none;
    text-align: center;
}

.lai-cta-glow:hover
 {
    color: #ffffff;
    animation: shake 0.3s ease-in-out infinite alternate;
    background: var(--lai-color-orange);
    border: 1px solid var(--lai-color-orange);
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
    box-shadow: 0 0 5px var(--lai-color-orange), 0 0 20px var(--lai-color-orange), 0 0 50px var(--lai-color-orange),
        0 0 100px var(--lai-color-orange);
}







/* CTA image / HOVER : Image blured and appears centered text */
.lai-cta-image-blur-show-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-decoration: none;
    min-width: 150px;
}

/* ÐšÐ°Ñ€Ñ‚Ð¸Ð½ÐºÐ° */
.lai-cta-image-blur-show-text img {
    transition: filter 0.3s ease-in-out;
    border-radius: 10px;
    width: 100%;
}

/* Ð¢ÐµÐºÑÑ‚ (Ð¿Ð¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸ÑŽ ÑÐºÑ€Ñ‹Ñ‚) */
.lai-cta-image-blur-show-text span {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    line-height: 30px;
    font-weight: bold;
    color: white;
    padding: 2px 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
    -webkit-text-stroke: 0.5px black;
}

/* Ð­Ñ„Ñ„ÐµÐºÑ‚ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
.lai-cta-image-blur-show-text:hover img {
    filter: blur(5px);
}

.lai-cta-image-blur-show-text:hover span {
    opacity: 1;
}










/* CTA image / HOVER Image shake and frame appears / text centered */
.lai-cta-image {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
}

/* Ð¡Ð°Ð¼Ð¾ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ */
.lai-cta-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
    transform: scale(1.1);
}

/* ÐžÐ²ÐµÑ€Ð»ÐµÐ¹ (Ñ‚ÐµÐºÑÑ‚ Ð²ÑÐµÐ³Ð´Ð° Ð¿Ð¾ Ñ†ÐµÐ½Ñ‚Ñ€Ñƒ bottom =&gt; top: 50%) */
.lai-cta-image-overlay {
    position: absolute;
    bottom: 5%;
    left: 0%;
    /* transform: translate(0%, -50%); */
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    pointer-events: none;
    /* Ð§Ñ‚Ð¾Ð±Ñ‹ ÐºÐ»Ð¸Ðº ÑˆÐµÐ» Ð¿Ð¾ ÑÑÑ‹Ð»ÐºÐµ */
}

/* Ð­Ñ„Ñ„ÐµÐºÑ‚ ÑƒÐ²ÐµÐ»Ð¸Ñ‡ÐµÐ½Ð¸Ñ */
.lai-cta-image:hover .lai-cta-image-container img {
    transform: scale(1);
}

.lai-cta-image:hover {
    animation: shake 0.9s ease-in-out infinite alternate;
}

/* Ð’Ð½ÑƒÑ‚Ñ€ÐµÐ½Ð½Ð¸Ð¹ Ð±Ð¾Ñ€Ð´ÐµÑ€ (Ð¿Ð¾ÑÐ²Ð»ÑÐµÑ‚ÑÑ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸) */
.lai-cta-image::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    border: 1px solid white;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* ÐŸÐ¾ÐºÐ°Ð·Ð°Ñ‚ÑŒ Ñ€Ð°Ð¼ÐºÑƒ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
.lai-cta-image:hover::after {
    opacity: 1;
}




/* 
    CTA image
    HOVER : Image blurs and text switch to another
    &lt;a href="#" class="lai-cta-image-flip-text" style="background-image: url('https://photos.lookatisrael.com/2018/ta/20181124_ta_crumbs_5D3_9944.jpg')"&gt;
        &lt;span&gt;text&lt;/span&gt;
        &lt;span&gt;text on hover&lt;/span&gt;
    &lt;/a&gt;
*/
.lai-cta-image-flip-text {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    aspect-ratio: 16 / 10;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 15px 0px var(--lai-color-blue);
    animation1: pulse-shadow-size 2s infinite alternate;

    /* Ð¤Ð¾Ð½ - Ñ€Ð°Ð·Ð¼Ñ‹Ñ‚Ð¾Ðµ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸Ðµ */
    background-color: var(--lai-color-orange);
    background-position: center;
    background-size: cover;
    backdrop-filter: blur(10px);
}

/* Ð&nbsp;Ð°Ð·Ð¼Ñ‹Ñ‚Ð¸Ðµ Ñ„Ð¾Ð½Ð° (ÐµÑÐ»Ð¸ Ð±Ñ€Ð°ÑƒÐ·ÐµÑ€ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÑ‚) */
.lai-cta-image-flip-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    background1: var(--lai-color-orange);
    backdrop-filter: blur(5px);
    z-index: 0;
}

/* Ð¢ÐµÐºÑÑ‚ */
.lai-cta-image-flip-text span {
    position: absolute;
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Ð¢ÐµÐºÑÑ‚ Ð¿Ð¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸ÑŽ */
.lai-cta-image-flip-text span:nth-child(1) {
    opacity: 1;
}

/* Ð¢ÐµÐºÑÑ‚ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
.lai-cta-image-flip-text span:nth-child(2) {
    opacity: 0;
}

/* Ð­Ñ„Ñ„ÐµÐºÑ‚ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ */
.lai-cta-image-flip-text:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 0 15px 0px rgba(255, 102, 0, 0.8);
}

.lai-cta-image-flip-text:hover::before {
    backdrop-filter: blur(0px);
    background: rgba(0, 0, 0, 0.3);
}

.lai-cta-image-flip-text:hover span:nth-child(1) {
    opacity: 0;
}

.lai-cta-image-flip-text:hover span:nth-child(2) {
    opacity: 1;
}

.lai-cta-image-flip-text {
    animation1: pulse 2s infinite alternate;
}</pre></body></html>