<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sticky-column-elements-container{
    max-width: unset !important;
}
.sticky-column-elements-wrapper{
    /* padding: 0 5em; */
    display: flex;
    margin-top: 80px;
    justify-content: space-between;
    gap: 2em;
}

.sticky-column-left{
   
}
.sticky-column-left-text p{
    color: var(--wp--preset--color--black);
    font-family: 'Poppins',sans-serif;
}

.sticky-column-left-arrow{
    display: flex;
    justify-content: end;
    margin-top: 2em;
}

.sticky-column-left{
    width:40%;
}

.sticky-column-right{
    width: 65%;
}

.sticky-column-left-elt{
    position: sticky;
    top: 170px;
}
.sticky-column-left-text h2 span{
    font-size: 29px ;

}
.sticky-column-elt{
    text-align: center;
    padding: 26px 21px;
    border-radius: 20px;
    margin-bottom: 1em;
}

.sticky-column-elt p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Poppins',sans-serif;
    line-height: 28px;
}

.sticky-column-elt:last-child{
    margin-bottom: 0;
}

.sticky-column-left-elt{
    opacity: 0;
    transition: all ease .3s;

}

@keyframes dash {
    to {
      stroke-dashoffset: 0;
    }
  }

.sticky-column-left-elt.active{
    opacity: 1;
}

.sticky-column-left-arrow svg&gt;path{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.sticky-column-left-arrow svg&gt;path+path{
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.sticky-arrow-animated{
    animation: dash 4s linear forwards;
}

@media (max-width: 1024px) {

    .sticky-column-elements-container{
        max-width: 100% !important;
    }

    .sticky-column-left{
        display: none;
        width: 100%;
    }

    .sticky-column-right{
        width: 100%;
        margin-top: 0 !important;
    }

    .sticky-column-elements-wrapper{
        padding: var(--container-space);
    }

    .sticky-column-elements-wrapper{
        flex-direction: column;
    }

    .sticky-column-left-arrow{
        display: none;
    }

    .sticky-column-left{
        display: unset;
    }
}

@media (max-width:576px){
    .sticky-column-elements-wrapper{
        padding: 0;
    }

    

}</pre></body></html>