@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {

    --bg-color: #000;

    --btn-color: #ffffff;
    /* button color*/
    --btn-bg: rgb(8, 163, 15);
    /* button bg color*/
    --main-gradient: linear-gradient(90deg, #32CD32 50%, #A4FF78 100%);
    --white-gradient: linear-gradient(90deg, #ffffff 50%, #e7e7e7 100%);

    --primary-text-color: #7e22ce;
    --header-link-hover: #7e22ce;
    --input-hover-bd-color: #7e22ce;
}


html {
    scroll-behavior: smooth;
    font-family: "Ubuntu", sans-serif;
}

header {
    /* background-color: #fff;
    color: #000; */
    color: #b1b1b1;
}


header>.collapsible-header {
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse {
    transition: width 0.3s ease;
}


.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 10px;
    transition: background-color 0.5s, color 0.5s;
}


.header-links:hover {
    color: #ffffff;
    /* background-color: var(--header-link-hover); */
}

.primary-text-color {
    color: var(--primary-text-color);
}

.gradient-text {
    background: rgb(215, 215, 215);
    background: var(--white-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-primary {
    background: var(--main-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section {
    /* background-image: url("../assets/images/background/dots.svg"); */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Do not repeat the image */
    background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* equivale a top: 0; right: 0; bottom: 0; left: 0 */
    background-image: url(../assets/images/background/SINGLE-bg-3.webp);
    filter: blur(3px);
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    /* Ajusta la opacidad como desees */
    z-index: -1;
    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            0 calc(100% - 5vw));
    /* Para que quede detrás del contenido */
}

.skewed {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transform: skewY(6deg);
}

.hero-img-bg-grad {
    background: rgb(126, 34, 206);
    background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
    filter: blur(50px);
    opacity: 0.5;
}

#dashboard {
    /* transform-origin: bottom center; */
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8) rotate(0deg) rotateX(70deg);
    transition: transform 0.5;
}

.border-gradient {
    background: rgb(219, 215, 213);
    background: linear-gradient(180deg, rgba(219, 215, 213, 1) 35%, rgba(214, 211, 233, 0) 71%);
    /* background-image: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%); */
    padding: 2px;
    border-radius: 10px;
}

.border-gradient>div {
    /* background-color: var(--bg-color); */
    background-color: var(--bg-color);
    border-radius: inherit;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

.btn {
    padding: 15px 30px;
    width: max-content;
    border-radius: 15px;
    color: var(--btn-color);
    background: var(--main-gradient);
    text-shadow: rgb(0, 65, 3) 1px 0 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover {}

.btn:disabled {
    cursor: default;
}

.input {
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    /* outline: none; */
    min-width: 100px;
    border: 1px solid #818080;
    /* transition: border 0.3s; */
}

.input:active,
.input:focus,
.input:focus-within {
    border: 1px solid var(--input-hover-bd-color) !important;
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}

.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}

.carousel-img {
    display: inline-block;
    margin: 0 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.footer-link {
    color: #c7c6c6;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}


/* Style for the collapsible content such as faq commonly known as: accordion */

.faq-accordion {
    background-color: inherit;
    color: #f2f2f2;
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: #e4e4e4;
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-accordion .active,
.faq-accordion:hover {
    /* background-color: #2e2c2c; */
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        right: 0px;
        flex-direction: column;
        opacity: 0;
        height: 100vh;
        min-height: 100vh;
        height: 100dvh;
        width: 0vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: end;
        background-color: #040404;
        color: #ffffff;
        overflow-y: auto;
        box-shadow: 3px 0px 3px 2px #9f9f9f;
    }

    .header-links {
        color: rgb(255, 255, 255);
    }

}

.hover-scale {
    transition: transform 0.3s ease-in-out;
}

.hover-scale:hover {
    transform: scale(1.2);
}

.hover-scale-rotate {
    transition: transform 0.3s ease-in-out;
}

.hover-scale-rotate:hover {
    transform: scale(1.2) rotate(10deg);
}

.film-grain {
    position: fixed;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    overflow: hidden;
    background-image: url(../assets/images/film-grain.png);
    animation-name: film-grain;
    animation-duration: 5s;
    -webkit-animation-timing-function: steps(10, end);
    animation-timing-function: steps(10, end);
    animation-delay: initial;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-direction: initial;
    -webkit-animation-fill-mode: initial;
    animation-fill-mode: initial;
    animation-play-state: initial;
    z-index: -1;
}

@-webkit-keyframes film-grain {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    10% {
        -webkit-transform: translate(-5%, -10%);
        transform: translate(-5%, -10%)
    }

    20% {
        -webkit-transform: translate(-15%, 5%);
        transform: translate(-15%, 5%)
    }

    30% {
        -webkit-transform: translate(7%, -25%);
        transform: translate(7%, -25%)
    }

    40% {
        -webkit-transform: translate(21%, 25%);
        transform: translate(21%, 25%)
    }

    50% {
        -webkit-transform: translate(-25%, 10%);
        transform: translate(-25%, 10%)
    }

    60% {
        -webkit-transform: translate(15%, 0);
        transform: translate(15%, 0)
    }

    70% {
        -webkit-transform: translate(0, 15%);
        transform: translate(0, 15%)
    }

    80% {
        -webkit-transform: translate(25%, 35%);
        transform: translate(25%, 35%)
    }

    90% {
        -webkit-transform: translate(-10%, 10%);
        transform: translate(-10%, 10%)
    }
}

@keyframes film-grain {

    0%,
    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    10% {
        -webkit-transform: translate(-5%, -10%);
        transform: translate(-5%, -10%)
    }

    20% {
        -webkit-transform: translate(-15%, 5%);
        transform: translate(-15%, 5%)
    }

    30% {
        -webkit-transform: translate(7%, -25%);
        transform: translate(7%, -25%)
    }

    40% {
        -webkit-transform: translate(21%, 25%);
        transform: translate(21%, 25%)
    }

    50% {
        -webkit-transform: translate(-25%, 10%);
        transform: translate(-25%, 10%)
    }

    60% {
        -webkit-transform: translate(15%, 0);
        transform: translate(15%, 0)
    }

    70% {
        -webkit-transform: translate(0, 15%);
        transform: translate(0, 15%)
    }

    80% {
        -webkit-transform: translate(25%, 35%);
        transform: translate(25%, 35%)
    }

    90% {
        -webkit-transform: translate(-10%, 10%);
        transform: translate(-10%, 10%)
    }
}