
.line-height-text {
    line-height: 1;
}

.material-symbols-outlined-second {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.pulse-cta {
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(225, 29, 72, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

.bg-vibrant-gradient {
    background: linear-gradient(135deg, #003441 0%, #0f4c5c 100%);
}


@media (max-width: 768px) {
    html,body{
        overflow-x: hidden;
    }
}