html {
    scroll-behavior: smooth !important;
}



.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 14vh;
    min-height: 12px;
    /* background: linear-gradient(to bottom, rgb(15 31 61 / 1) 0%, rgb(15 31 61 / 1) 5px); */
    background: rgb(15 31 61 / 1);
    box-shadow: 0 -30px 40px rgb(15 31 61 / 1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s;
    opacity: 1;
    visibility: visible;
}


.bottom-bar--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#add {
    display: flex;
    justify-content: center;
    margin-top: 5%;
    font-size: medium;
    color: rgb(249, 114, 22);

}

#hero-slogan {
    position: relative;
    padding-top: 0;
    height: 30vh;
    top: -80px;

}


#custom-btn {
    position: relative;
}

tool-tip {
    display: none;
    position: absolute;
    background: #333;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 10px;
    line-height: 1.1rem; ;
    width: max-content;    
    max-width: 250px;
    white-space: normal;
    bottom: 105%;
    left: 20%;
    pointer-events: none;
}
#custom-btn:hover tool-tip {
    display: block;
}

/* check: https://web.dev/articles/building/a-tooltip-component */

/* tool-tip[tip-position="top"] {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
} */







#hero-slogan::after {
    content: "";
    position: absolute;
    top: 155%;
    bottom: -60%;
    right: 1rem;
    border-right: dashed 2px rgba(255, 166, 0, 0.507);
}

#hero-section {
    position: relative;
    overflow: hidden;
    background: url("../files/assets/hero-bg.webp") no-repeat;
    background-size: cover;
    box-shadow: -1px 16px 60px 0px rgb(15 31 61 / 1);


}

#hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    /* tailwind: navy -> navy/90 -> navy/70 */
    background: linear-gradient(to top left,
            rgba(15, 31, 61, 1) 0%,
            rgba(15, 31, 61, 0.95) 30%,
            rgba(15, 31, 61, 0.85) 80%,
            rgba(15, 31, 61, 01) 100%);

    z-index: 1;
}

#hero-section {}

.icons-wrapper {


    transform: translateX(96%) translateY(-128%);


}

#hero-side-img {
    width: 2rem;
    margin-top: 0.7rem;
    height: auto;
    top: 290px;
    opacity: 0.5;


}


.horizontal-bar {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
    top: 100px;
}

@media (max-height: 627px) {
    #category-nav {
        display: none !important;
    }
}

.nav-button {
    display: inline-block;
    flex: 1;
    padding: 5px 10px;
    /* background-color: rgb(148 163 184); */
    color: rgb(15 31 61 / 0.95);
    transition: all 0.3s ease;
    box-shadow: inset 0px 0px 3px 4px rgba(249, 114, 22, 0.5);
    white-space: nowrap;
    font-size: small;

}

.nav-button:hover {
    background-color: rgb(249, 114, 22);
    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(249, 114, 22, 0.2);
}


.nav-button:active {
    transform: translateY(0);
}


#cta-section-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;


}


#cho {
    position: absolute;
    z-index: 8;
    left: 0;
    right: 0;
    bottom: 166px;
    align-self: self-end;
    order: 9999;
}

@media (max-height: 799px) {
    #cho {
        display: none !important;
    }
}

#cta-individuals,
#cta-team {

    position: absolute;
    top: 0;
    width: calc(50% - 20px);
    padding: 50px 0 50px 0px;

}



#cta-team::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(to right, rgb(15 31 61 / 1), rgb(249 114 22));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: inherit;
    pointer-events: none;

}

#cta-individuals {
    left: 1rem;
}

#cta-team {
    right: 1rem;
}