﻿/* https://developer.mozilla.org/en/docs/Web/CSS/box-shadow box-shadow: [inset?] [top] [left] [blur] [size] [color];
 Tips: - We're setting all the blurs to 0 since we want a solid fill. - Add the inset keyword so the box-shadow is on the inside of the element - Animating the inset shadow on hover looks like the element is filling in from whatever side you specify ([top] and [left] accept negative values to become [bottom] and [right]) - Multiple shadows can be stacked - If you're animating multiple shadows, be sure to keep the same number of shadows on hover/focus as non-hover/focus (even if you have to create a transparent shadow) so the animation is smooth. Otherwise, you'll get something choppy. */
/*.fill:hover, .fill:focus {
    box-shadow: inset 0 0 0 2em var(--hover);
}

.pulse:hover, .pulse:focus {
    animation: pulse 1s;
    box-shadow: 0 0 0 2em transparent;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--hover);
    }
}*/
/*
.close:hover, .close:focus {
    box-shadow: inset -3.5em 0 0 0 var(--hover), inset 3.5em 0 0 0 var(--hover);
}*/

.raise:hover, .raise:focus {
    box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
    background: linear-gradient(rgba(0, 0, 0, 0.71),rgba(70, 70, 70, 0.71),#ff6400);
}

/*.up:hover, .up:focus {
    box-shadow: inset 0 -3.25em 0 0 var(--hover);
}*/

/*.slide:hover, .slide:focus {
    box-shadow: inset 6.5em 0 0 0 var(--hover);
}*/
/*
.offset {
    box-shadow: 0.3em 0.3em 0 0 var(--color), inset 0.3em 0.3em 0 0 var(--color);
}

    .offset:hover, .offset:focus {
        box-shadow: 0 0 0 0 var(--hover), inset 6em 3.5em 0 0 var(--hover);
    }

.fill {
    --color: #a972cb;
    --hover: #cb72aa;
}

.pulse {
    --color: #ef6eae;
    --hover: #ef8f6e;
}

.close {
    
    --color: #ff7f82;
    --hover: #ffdc7f;
}
*/
.raise {

    transition:all .3s ease-in-out;
    --color: #ff6400;
    --hover: #ff6400;

}

/*.up {
    --color: #e4cb58;
    --hover: #94e458;
}*/
/*
.slide {
    --color: #8fc866;
    --hover: #66c887;
}
*/
/*.offset {
    --color: #19bc8b;
    --hover: #1973bc;
}*/


.HomeFootBtn {
    font-weight:300;
    position: relative;
    padding: 16px 30px;
    font-size: 1.5rem;
    color: var(--color);
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    text-shadow: 0 0 15px var(--color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: 0.5s;
    z-index: 1;
}

    .HomeFootBtn:hover {
        font-weight: 600;
        color: #fff;
        border: 2px solid rgba(0, 0, 0, 0);
        box-shadow: 0 0 0px var(--color);
    }
.signUpBtn:hover {
    color: black !important;
}
.HomeFootBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color);
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

    .HomeFootBtn:hover::before {
        transform: scale(1);
        transition-delay: 0.5s;
        box-shadow: 0 0 10px var(--color), 0 0 30px var(--color), 0 0 60px var(--color);
    }

    .HomeFootBtn span {
        position: absolute;
        background: var(--color);
        pointer-events: none;
        border-radius: 2px;
        box-shadow: 0 0 10px var(--color), 0 0 20px var(--color), 0 0 30px var(--color), 0 0 50px var(--color), 0 0 100px var(--color);
        transition: 0.5s ease-in-out;
        transition-delay: 0.25s;
    }

    .HomeFootBtn:hover span {
        opacity: 0;
        transition-delay: 0s;
    }

    .HomeFootBtn span:nth-child(1),
    .HomeFootBtn span:nth-child(3) {
        width: 40px;
        height: 4px;
    }

    .HomeFootBtn:hover span:nth-child(1),
    .HomeFootBtn:hover span:nth-child(3) {
        transform: translateX(0);
    }

    .HomeFootBtn span:nth-child(2),
    .HomeFootBtn span:nth-child(4) {
        width: 4px;
        height: 40px;
    }

    .HomeFootBtn:hover span:nth-child(1),
    .HomeFootBtn:hover span:nth-child(3) {
        transform: translateY(0);
    }

    .HomeFootBtn span:nth-child(1) {
        top: calc(50% - 2px);
        left: -50px;
        transform-origin: left;
    }

    .HomeFootBtn:hover span:nth-child(1) {
        left: 50%;
    }

    .HomeFootBtn span:nth-child(3) {
        top: calc(50% - 2px);
        right: -50px;
        transform-origin: right;
    }

    .HomeFootBtn:hover span:nth-child(3) {
        right: 50%;
    }

    .HomeFootBtn span:nth-child(2) {
        left: calc(50% - 2px);
        top: -50px;
        transform-origin: top;
    }

    .HomeFootBtn:hover span:nth-child(2) {
        top: 50%;
    }

    .HomeFootBtn span:nth-child(4) {
        left: calc(50% - 2px);
        bottom: -50px;
        transform-origin: bottom;
    }

    .HomeFootBtn:hover span:nth-child(4 ) {
        bottom: 50%;
    }
.HomeBtncontainer {
    padding-top:50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 120px;
 
}

.btn-orange {
    color: #fff;
    background-color: #ff6400;
    border-color: #ff5400;
    /* å­—é ­å¤§å¯« */
    /* text-transform:capitalize; */
    /* å¤§å¯« */
    text-transform: uppercase;
}

    .btn-orange:focus,
    .btn-orange.focus {
        color: #fff;
        background-color: #ff5400;
        border-color: #ca5100;
    }

    .btn-orange:hover {
        color: #fff;
        background-color: #ff5400;
        border-color: #ca5100;
    }

    .btn-orange:active,
    .btn-orange.active,
    .open > .dropdown-toggle.btn-orange {
        color: #fff;
        background-color: #ff5400;
        border-color: #ca5100;
    }

        .btn-orange:active:hover,
        .btn-orange.active:hover,
        .open > .dropdown-toggle.btn-orange:hover,
        .btn-orange:active:focus,
        .btn-orange.active:focus,
        .open > .dropdown-toggle.btn-orange:focus,
        .btn-orange:active.focus,
        .btn-orange.active.focus,
        .open > .dropdown-toggle.btn-orange.focus {
            color: #fff;
            background-color: #ca5100;
            border-color: #ca5100;
        }

    .btn-orange:active,
    .btn-orange.active,
    .open > .dropdown-toggle.btn-orange {
        background-image: none;
    }

    .btn-orange.disabled:hover,
    .btn-orange[disabled]:hover,
    fieldset[disabled] .btn-orange:hover,
    .btn-orange.disabled:focus,
    .btn-orange[disabled]:focus,
    fieldset[disabled] .btn-orange:focus,
    .btn-orange.disabled.focus,
    .btn-orange[disabled].focus,
    fieldset[disabled] .btn-orange.focus {
        background-color: #ff6400;
        border-color: #ff5400;
    }

    .btn-orange .badge {
        color: #ff6400;
        background-color: #fff;
    }



.btn-gray {
    color: #fff;
    background-color: #999999;
    border-color: #666666;
    /* text-transform:capitalize; */
}

    .btn-gray:focus,
    .btn-gray.focus {
        color: #fff;
        background-color: #666666;
        border-color: #555555;
    }

    .btn-gray:hover {
        color: #fff;
        background-color: #666666;
        border-color: #555555;
    }

    .btn-gray:active,
    .btn-gray.active,
    .open > .dropdown-toggle.btn-gray {
        color: #fff;
        background-color: #666666;
        border-color: #555555;
    }


        .btn-gray:active:hover,
        .btn-gray.active:hover,
        .open > .dropdown-toggle.btn-gray:hover,
        .btn-gray:active:focus,
        .btn-gray.active:focus,
        .open > .dropdown-toggle.btn-gray:focus,
        .btn-gray:active.focus,
        .btn-gray.active.focus,
        .open > .dropdown-toggle.btn-gray.focus {
            color: #fff;
            background-color: #555555;
            border-color: #555555;
        }

    .btn-gray:active,
    .btn-gray.active,
    .open > .dropdown-toggle.btn-gray {
        background-image: none;
    }

    .btn-gray.disabled:hover,
    .btn-gray[disabled]:hover,
    fieldset[disabled] .btn-gray:hover,
    .btn-gray.disabled:focus,
    .btn-gray[disabled]:focus,
    fieldset[disabled] .btn-gray:focus,
    .btn-gray.disabled.focus,
    .btn-gray[disabled].focus,
    fieldset[disabled] .btn-gray.focus {
        background-color: #999999;
        border-color: #666666;
    }

    .btn-gray .badge {
        color: #999999;
        background-color: #fff;
    }

.btn-black {
    color: #fff;
    background: rgba(0,0,0,0.6);
    border: 1px solid #fff;
    transition: 0.3s all;
    /* text-transform:capitalize; */
}

    .btn-black:hover {
        color: #fff;
        background: #000;
        border: 1px solid #fff;
    }

    .btn-black:active, .btn-black:focus {
        color: #fff;
        background: #000;
        border: 1px solid #fff;
    }


.btn-white {
    color: #fff;
    background: rgba(0,0,0,0);
    border: 1px solid #fff;
    transition: 0.3s all;
}

    .btn-white:hover {
        color: #000;
        background: #fff;
        border: 1px solid #fff;
    }

.btn-yellow {
    color: #FCCA46;
    background: rgba(0,0,0,0);
    border: 1px solid #FCCA46;
    cursor: default;
}

    .btn-yellow:hover {
        color: #FCCA46;
        background: rgba(0,0,0,0);
        border: 1px solid #FCCA46;
    }


.btn-gray-outline {
    color: #999;
    background: rgba(0,0,0,0);
    border: 1px solid #999;
    transition: 0.3s all;
}

    .btn-gray-outline:hover {
        color: #000;
        background: #999;
        border: 1px solid #999;
    }

    .btn-gray-outline:active, .btn-gray-outline:focus {
        color: #000;
        background: #666;
        border: 1px solid #999;
    }



