/* GLOBALS */

html,
body {
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100dvh;
}

.fancy-font {
    font-family: "Fleur De Leah", cursive;
}


/* NAVBAR */

.scrolled {
    background: rgb(26, 26, 30);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.4);
}

.scrolled #cta_navbar {
    background: rgb(50, 55, 255);
    scale: 0.95;
    transition: all .3s ease;
}

.scrolled #cta_navbar:hover {
    scale: 1;
    transition: all .3s ease;
}

.active {
    font-weight: 600;
    opacity: 100%;
    transition: all .3s ease;
}


/* ANIMATED HERO BACKGROUND */

.bg {
    animation: slide 10s ease-in-out infinite alternate;
    background-image: linear-gradient( -60deg, rgb(119, 191, 254) 50%, rgb(2, 16, 49) 50%);
    bottom: 0;
    left: -50%;
    opacity: 0.1;
    position: absolute;
    right: -50%;
    top: 0;
}

.bg2 {
    animation-direction: alternate-reverse;
    animation-duration: 16s;
}

.bg3 {
    animation-duration: 20s;
}

@keyframes slide {
    0% {
        transform: translateX(-25%);
    }
    100% {
        transform: translateX(25%);
    }
}

.iti--allow-dropdown{
    width: 100%;
}