@import url('https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

.sansation-regular {
    font-family: "Sansation", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body{
    font-family: "Sansation", sans-serif;
}

.nav > li > a {
    font-size: 1.2em !important;
}

.slider-desc{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgb(27 123 51);
    animation-delay: 1000ms;
    font-size: 3em;
    line-height: 1
}

@media (max-width:678px){
    .custom-cards.custom-cards-slider .cards-container{
        margin: -90px auto 0;
    }
}

.wa-float {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    z-index: 1000;
}

.wa-float a, .wa-float a:hover{
    text-decoration:none;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}


.whatsapp-float {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size:30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}