<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* BTN STYLE */
div.is-style-white-background a{
    font-size:var(--wp--preset--font-size--text-m);
    color:var(--wp--preset--color--black);
    padding: 10px 23px;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    background-color: var(--wp--preset--color--white);
    border: solid 1px var(--wp--preset--color--white);
    transition: border .4s  ;
    text-transform: uppercase;
}

div.is-style-white-background a:hover{
    border: solid 1px var(--wp--preset--color--black);
}

div .is-style-transparent-background a{
    font-size:var(--wp--preset--font-size--text-m);
    color:var(--wp--preset--color--white);
    padding: 10px 25px;
    border: solid 2px var(--wp--preset--color--white);
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    background-color: transparent;
   
}

div .is-style-transparent-background a::after{
    content: url('../img/arrow-btn.svg');
    margin-left: 10px;
    font-size:var(--wp--preset--font-size--text-m);
    color:var(--wp--preset--color--white);
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    transition: margin-left .4s ease;
   
}

div .is-style-transparent-background a:hover::after{
    margin-left: 20px;
   
}


div .is-style-transparent-background-no-border a{
    font-size:var(--wp--preset--font-size--text-m);
    color:var(--wp--preset--color--white);
    padding: 0;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    background-color: transparent;
    text-transform: uppercase;
   
}

div .is-style-transparent-background-no-border a::after{
    content: url('../img/arrow-btn.svg');
    margin-left: 10px;
    font-size:var(--wp--preset--font-size--text-m);
    color:var(--wp--preset--color--white);
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    transition: margin-left .4s ease;
   
}

div .is-style-transparent-background-no-border a:hover::after{
    margin-left: 20px;
   
}

div .is-style-black-background a{
    font-size:var(--wp--preset--font-size--text-m);
    color:var(--wp--preset--color--white);
    padding: 10px 25px;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    background-color: var(--wp--preset--color--black);
}

div .is-style-white-background-blue-border a{
    background-color: white;
    padding: 10px 23px;
    color: #1740CD;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    border: solid 2px #1740CD;
    transition: all .3s ease;
}

div .is-style-white-background-blue-border:hover a{
    color: white;
    background-color: #1740CD;
}

div .is-style-blue-background-white-border a{
    background-color: #1740CD;
    padding: 10px 23px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Poppins',sans-serif;
    border: solid 2px #1740CD;
    transition: all .3s ease;
}

div .is-style-blue-background-white-border:hover a{
    color: #1740CD;
    background-color: white;
}

div .is-style-transparent-background-blue-text a{
    background-color: transparent;
    color:#1740CD;
    text-align: center;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.05px;
    text-transform: uppercase;
}

div .is-style-transparent-background-blue-text a::after{
    content: url('../img/arrow-btn-blue.svg');
    margin-left: 10px;
    font-size:var(--wp--preset--font-size--text-m);
    color:var(--wp--preset--color--white);
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    transition: margin-left .4s ease;
   
}

div .is-style-transparent-background-blue-text a:hover::after{
    margin-left: 20px;
   
}</pre></body></html>