p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "slnt" 0;
}

.font-roboto {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* .text-gold {
    background: linear-gradient(45deg, #ffec8d, #C2AD34, #ffec8d, #c7b33c, #936E37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.bg-gold {
    background: linear-gradient(45deg, #ffec8d, #C2AD34, #ffec8d, #c7b33c, #936E37);
}

.text-gold {
    background: linear-gradient(45deg, #F1DD7C, #E1AE43, #F5E78C, #98763C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    background: linear-gradient(45deg, #F1DD7C, #E1AE43, #F5E78C, #98763C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-top {
    border-image: linear-gradient(to right, #AD822D, #C2AD34, #BB8A2E, #C7B33C, #936E37) 1 0;
}

.glow-on-hover {
    /*     width: 220px; */
    height: 50px;
    border: none;
    outline: none;
    color: #000000;
    background: white;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #AD822D, #C2AD34, #BB8A2E, #C7B33C, #936E37);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #fff
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:before {
    opacity: 1;
    color: #fff
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    border-radius: 10px;
}

/* router service */
@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.rotate-animation {
    animation: rotate-animation 4s infinite;
}

@keyframes rotate-opposite-animation {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(-180deg) scale(1.2);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

.rotate-opposite-animation {
    animation: rotate-opposite-animation 4s infinite;
}
.boxershadow {
    background-image: linear-gradient(45deg, #F1DD7C, #E1AE43, #F5E78C, #98763C)
}