:root {
    --ebe-primary: #c8ec7f;
    --ebe-secondary: #2b3021;
    
}
#floating_navigation {
    position: fixed;
    top:0px;
    left:0px;
    right:0px;
    display: none;
    z-index: 100000;
}

.transition {
    transition: width 2s;
}

.bg-gradient-ebe-top {
    background-image: linear-gradient(0, #fff, var(--ebe-primary)) !important;
}

.bg-gradient-ebe-bottom {
    background-image: linear-gradient(180deg, #fff, var(--ebe-primary)) !important;
}

.bg-gradient-ebe-side-left {
    background-image: linear-gradient(90deg, #fff, var(--ebe-primary)) !important;
}

.bg-gradient-ebe-side-right {
    background-image: linear-gradient(270deg, #fff, var(--ebe-primary)) !important;
}

.cover-image {
    background-position: center center;
    background-size:cover;
}

.bg-ebe {
    background-color: var(--ebe-primary);
}
.btn-ebe {
    background-color: var(--ebe-primary);
    border:1px solid var(--ebe-secondary);
}
.btn-ebe:hover {
    background-color: var(--ebe-secondary);
    border:1px solid var(--ebe-secondary);
    color: #fff;
}

.text-ebe {
    color: var(--ebe-primary);
}
.text-ebe-secondary * {
    color: var(--ebe-secondary);
}

.link-underline-ebe {
    --bs-link-underline-opacity: 1;
    -webkit-text-decoration-color:var(--ebe-secondary) !important;
    text-decoration-color: var(--ebe-secondary) !important;
}
/*var(--bs-primary-rgb), var(--bs-bg-opacity)*/