.btn-discuss {
    background: blue;
    border-radius: 0;
    color: white;
    display: inline-block;
    font-size: 1rem;
    height: 50px;
    line-height: 50px;
    position: fixed;
    right: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform-origin: bottom right;
    width: 150px;
    /* Hover styles, 
        media queries */
}

.bg-alfa {
    background-color: #07468e !important;
}



.text-alfa {
    color: #07468e;
}


.alfa-hover:hover {
    text-decoration: underline;

    transition: transform 0.3s ease;
}

.alfa-active {
    background-color: #07468e;
    padding: 10px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-button-text {
    display: none;
}

.whatsapp-button:hover .whatsapp-button-text {
    display: inline;
}

.custom-scrollbar {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.custom-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, and Opera */
}

/* Set the color of the track */
::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* Set the color and style of the scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: #07468e;
}

/* Set the color and style of the scrollbar corner */
::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}

/* Optionally, you can modify the size of the scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}



.parallax {
    background: url('/storage/parallax-cta.jpg') repeat fixed;
    background-size: cover;
    background-position: center;
    height: 20rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Add position relative for stacking purposes */
}

.parallax-inner {
    text-align: center;
    z-index: 1;
    /* Ensure the content is above the background */
}

.visible {
    display: block;
}

.hidden-2 {
    display: none;
}

/* Apply this style to the container with horizontal overflow */
.overflow-container {
    overflow-x: auto;
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: transparent transparent;
    /* Firefox */

    /* Webkit (Chrome, Safari, Edge) */
    &::-webkit-scrollbar {
        width: 12px;
    }

    &::-webkit-scrollbar-thumb {
        background-color: transparent;
    }
}