:root{
    --gradient-spprac: linear-gradient(
        45deg,
        #11A2DA,
        #ffffff,
        #D9D9D9,
        #929291,
        #11A2DA,
        #753364,
        #D9D9D9,
        #FFFFFF,
        #11A2DA

    );
    --gradient-gray: linear-gradient(
        45deg,
        #11A2DA,
        #D9D9D9,
        #929291,
        #753364
    );
    --sp-fc-lg: #D9D9D9;
    --sp-fc-mw: #FFFFFF;
    --sp-fc-wg: #929291;
    --sp-fc-wg: #262626;
    --sp-fc-bc: #11A2DA;
    --sp-fc-wg: #753364;
}

.overview{
    height: 150px;
    background-color: #D9D9D9;
}

.hvr-exp{
    transition: transform 0.5s ease;
}

.hvr-exp:hover{
    transform: scale(1.05);
    z-index: 1;
}

.hvr-exp-lg{
    transition: transform 0.5s ease;
}

.hvr-exp-lg:hover{
    transform: scale(1.5);
    z-index: 1;
}

.hvr-exp-fst{
    transition: transform 0.25s ease;
}

.hvr-exp-fst:hover{
    transform: scale(1.1);
    z-index: 1;
}

.hvr-exp-md{
    transition: transform 0.5s ease;
}

.hvr-exp-md:hover{
    transform: scale(1.15);
    z-index: 1;
}

.hvr-exp-sm{
    transition: transform 0.5s ease;
}

.hvr-exp-sm:hover:not(:hover > *){
    transform: scale(1.01);
    z-index: 1;
}

.hvr-hl{
    color: black;
    border-color: transparent;
    border-width: 1px;
    transition: transform 0.5s ease;
}

.hvr-hl:hover{
    color: #11A2DA;
    border-color: #11A2DA;
    border-width: 1px;
    box-shadow: 0 4px 8px 0 rgba(30, 191, 255, 0.505), 0 3px 10px 0 rgba(117, 51, 101, 0.084);

}

.hvr-hl-b{
    transition: transform 0.5s ease;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.179);
}

.hvr-hl-b:hover{
    border-color: #11A2DA;
    border-width: 1px;
    box-shadow: 0 4px 8px 0 rgba(30, 191, 255, 0.505), 0 3px 10px 0 rgba(117, 51, 101, 0.084);
}

.hover-rise-down{
    transition: transform 0.5s ease;
}

.hover-rise-down:hover{
    transform: translateY(10px);
}

.flex-flat {
    width: 200px;
    height: auto;
}

.my-col {
    width: 500px;
    height: 500px
}

.peak-img {
    transform: translate(250px, 20px);
}

.fc-lg{
    font-style: var(--sp-fc-lg);
}

/* body {
    opacity: 0;
    background-color: white;
    animation: fadeIn 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in;
}

@keyframes fadeIn {
    from {opacity:0; background-color: white;}
    to {opacity: 1; background-color: white;}
} */

/* .navbar-animated{
    transform: translateY(-150px);
    animation: riseDown 1s;
    animation-delay: 0s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

@keyframes riseDown{
    0% {}
    100% {transform:translateY(0px)}
} */

.cutout-text {
    background-color: white;
    color: black;
    font-size: 10vw; /* Responsive font size */
    font-weight: bold;
    margin: 0 auto; /* Center the text container */
    padding: 10px;
    width: 50%;
    text-align: center; /* Center text */
    position: absolute; /* Position text */
    top: 50%; /* Position text in the middle */
    left: 50%; /* Position text in the middle */
    transform: translate(-50%, -50%); /* Position text in the middle */
    mix-blend-mode: screen; /* This makes the cutout text possible */
}

.anim-grad-spprac{
    background-image: var(--gradient-spprac);
    background-size: 300%;
    animation: bg-spprac-grad-anim 25s infinite alternate ease-in-out;
}

@keyframes bg-spprac-grad-anim {
    0% {background-position: left;}
    100% {background-position: right;}
}

.anim-grad-gray{
    background-image: var(--gradient-gray);
    background-size: 300%;
    animation: bg-grad-gray-anim 50s infinite alternate ease;
}

@keyframes bg-grad-gray-anim {
    0% {background-position: right;}
    100% {background-position: left;}
}

.flip-X {
    transform: scaleX(-5);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
}

.nav-btn-spprac{
    --bs-btn-padding-y: 12px; 
    --bs-btn-padding-x: 12px; 
    --bs-btn-font-size: 30px; 
    --bs-btn-color: #000000; 
    --bs-btn-hover-border-color: #11A2DA; 
    --bs-btn-border-radius: 0px; 
    --bs-btn-hover-bg: #11A2DA; 
    --bs-btn-hover-color: #ffffff;
}

.btn-spprac-bc{
    --bs-btn-hover-border-color: #11A2DA; 
    --bs-btn-border-radius: 0px; 
    --bs-btn-hover-bg: #11A2DA; 
    --bs-btn-hover-color: #ffffff;
    --bs-btn-border-color: #929291;
}

.btn-no-brd{
    --bs-btn-border-color: transparent;
}

.btn-glass{
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.33);
}

.text-glass{
    color: rgba(255, 255, 255, 0.2);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn-actv{
    --bs-btn-color: #11A2DA;
    text-decoration: underline;
}

.nav-btn-dis{
    --bs-btn-color: #92929144;
    --bs-btn-border-color: transparent; 
}

.card-rect{
    height: 100px;
}

.text-bg-dg{
    background-color: #262626;
}

.text-shadow{
    text-shadow: 5px 0px 10px #0000009c;
}

.no-border{
    border: transparent;
}

.divider{
    background-color: #D9D9D9;
    height: 1px;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.glassmorph{
    background: rgba(255, 255, 255, 0.25);
    border-radius: 0px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.33);
}