* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap'); */


:root {
    --primary-color: #6F2BF6;
    --secondary-color: #620178;
    --tertiary-color: #04030E;
    --fourth-color: #141123;
    --complementary-color: #FAD6A5;
    --complementary-second-color: #A4CFF7;
    --whitegray-color: #C7C6CB;
    --gray-color: #3A3A3A;
    --gray-light: #848485;
    --white-color: #ffffff;
    --main-gradient: linear-gradient(90deg, rgba(111, 43, 246, 1) 0%, rgba(98, 1, 120, 1) 100%);
    --gradient-135: linear-gradient(135deg, rgba(111, 43, 246, 1) 0%, rgba(98, 1, 120, 1) 100%);
}

/* ----------
GENERALES
------------ */

body {
    background-color: var(--tertiary-color);
    font-family: "Nunito";
}

.ico {
    font-size: 16px;
    color: var(--whitegray-color);
}

p {
    color: var(--gray-light);
}

a {
    color: var(--gray-light);
    text-decoration: none;
}

.underline {
    text-decoration: underline;
}

/* section {
    overflow: hidden;
} */

.wrapper {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* ----------
BUTTONS GENERALES
------------ */

.btnPrimary {
    background: var(--main-gradient);
    color: var(--white-color);
    font-weight: 700;
    display: flex;
    width: fit-content;
    padding: 4px 20px;
    border-radius: 100px;
    align-items: center;
    border: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.btnPrimary::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: var(--main-gradient);
    transition: all .5s ease-in-out;
}

.btnPrimary:hover::before {
    left: 0;
}

.btnPrimary i {
    margin-left: 6px;
    font-size: 18px;
    color: var(--white-color);
}

.btnSecondary {
    border: 2px solid var(--fourth-color);
    color: var(--gray-light);
    display: flex;
    width: fit-content;
    padding: 4px 20px;
    border-radius: 100px;
    align-items: center;
    margin: 6px;
    position: relative;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.btnSecondary:hover {
    color: var(--white-color);
}

.btnSecondary::before {
    width: 100%;
    height: 100%;
    position: absolute;
    content: '';
    background: var(--main-gradient);
    left: -100%;
    top: 0;
    z-index: -1;
    border-radius: 100px;
    transition: all .5s ease-in-out;
}

.btnSecondary:hover::before {
    left: 0;
}

.btnSecondary i {
    margin-right: 6px;
    font-size: 18px;
    color: var(--gray-light);
    transition: all .5s ease-in-out;
}

.btnSecondary:hover i {
    color: var(--white-color);
}

/* ----------
TITLES INTERIOR
------------ */
.titleSec {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.titleSec.left {
    justify-content: flex-start;
}

h1 {
    font-family: "Nunito Sans";
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    background: linear-gradient(90deg, #A4CFF7 0.04%, #6F2BF6 122.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    position: relative;
}

.backH1 {
    -webkit-text-stroke-width: 1;
    -webkit-text-stroke-color: #000;
    font-family: Nunito;
    font-size: 80px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    opacity: 0.6;
    filter: blur(5px);
    position: absolute;
    z-index: -1;
}

/* ----------
CARDS
------------ */

.cardPrimary {
    width: 100%;
    padding: 40px 30px;
    border: 2px solid var(--fourth-color);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.cardPrimary.cardSmall {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.cardPrimary.cardSmall img {
    margin-bottom: 0;
    margin-right: 14px;
}

.cardPrimary::before {
    position: absolute;
    content: url(../img/blobs/1.svg);
    right: -24%;
    top: -60%;
    z-index: -1;
}

.cardPrimary::after {
    position: absolute;
    content: url(../img/blobs/2.svg);
    bottom: -30%;
    left: -30%;
    z-index: -1;
}

.cardIcon {
    margin-bottom: 30px;
    height: 50px;
}

.cardTitle {
    color: var(--whitegray-color);
    font-size: 16px;
    font-weight: 400;
}

.cardPrimary p {
    margin: 0;
}

/* ----------
FORMS
------------ */
.form {
    display: flex;
    flex-direction: column;
    align-items: end;
    border: 2px solid var(--fourth-color);
    border-radius: 0 40px 40px 0;
    padding: 60px 40px 60px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.inputForm {
    background-color: var(--fourth-color);
    border: none;
    color: var(--gray-light);
    width: 100%;
    padding: 8px 20px;
    border-radius: 10px;
    font-weight: 400;
    margin-bottom: 20px;
}

label {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 2px;
    color: var(--whitegray-color);
}

label i {
    margin-right: 8px;
}

.formCta {
    border-radius: 100px;
    background: linear-gradient(91deg, #A4CFF7 6.92%, #6F2BF6 43.88%, #620178 92.86%);
    padding: 2px;
}

.inputCont {
    width: 100%;
    border-radius: 100px;
    display: flex;
    border-image: linear-gradient(45deg, purple, orange) 1;
    z-index: 5;
    position: relative;
}

.inputCont input {
    width: 100%;
    margin-right: 6px;
    background: transparent;
    border: none;
    color: var(--white-color);
    font-family: 'Nunito';
}

.inputCont input::placeholder {}

.inputCont input:focus {
    outline: none;
    box-shadow: none;
}

.gradient-border-mask {
    display: flow-root;
    position: relative;
    padding: 10px 14px 10px 24px;
    box-shadow: 0px 0px 16px 0px rgba(164, 207, 247, .5);
    border-radius: 100px;
}

.gradient-border-mask::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    border: 2px solid transparent;
    background: linear-gradient(91deg, #A4CFF7 6.92%, #6F2BF6 43.88%, #620178 92.86%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

/* ----------
NAVBAR 
------------ */
.logoBrand {
    height: 24px;
}

.navbar {
    position: fixed;
    width: 100%;
    background-color: transparent;
    z-index: 10;
    transition: all .5s ease-in-out;
}

.collapsing {

    transition: height .8s ease-in-out;

}

.navbar .navbar-nav {
    border: 2px solid var(--fourth-color);
    border-radius: 100px;
    padding: 0px 10px;
    margin-left: 10px;
    padding: 0;
    background-color: transparent;
    transition: all .5s ease-in-out;
}

.navbar.sticky .navbar-nav {
    background-color: var(--tertiary-color);
}

.navbar .navbar-nav .nav-link {
    color: var(--whitegray-color);
    font-size: 14px;
    font-weight: 400;
    border-radius: 100px;
    padding: 8px 20px;
    /* margin-left: 6px; */
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: all .5s ease-in-out;
}

.navbar .navbar-nav.navigation .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    z-index: -1;
    left: -100%;
    top: 0;
    background: var(--main-gradient);
    transition: all .5s ease-in-out;
}

.navbar .navbar-nav .navLink.active {
    color: var(--white-color);
    font-weight: 700;
    /* Probably */
    /* background: var(--main-gradient); */
    transition: all .5s ease-in-out;
}

.navbar .navbar-nav.navigation .navLink.active::before {
    left: 0;
}

.navbar .navbar-nav.navigation .navLink:hover::before {
    left: 0;
    font-weight: 700;
}

.navbar .navbar-nav.navigation .navLink:hover {
    font-weight: 700;
    color: var(--white-color);
}

.navigation {
    display: flex;
    background-color: #000;
    border-radius: 5px;
    position: relative;
    padding-left: 0;
}

.slider {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    background: var(--main-gradient);
    border-radius: 100px;
    z-index: 1;
    transition: 0.5s ease;
}

.navbar .navbar-nav.socials {
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 8px 16px;
    margin-top: 0;
}

.navbar .navbar-nav.socials .nav-link {
    padding: 0 2px;
    display: flex;
    margin: 3px;
}

.slider {

    position: absolute;
    background: var(--main-gradient);
    border-radius: 100px;
    height: 100%;
    /* z-index: -1; */
    display: none;
    transition: left 0.3s ease-in-out, top 0.3s ease-in-out;

    /* Otros estilos */

}

.slider.active-slider {
    display: block;
}

.navbar-toggler {
    border: 2px solid var(--fourth-color);
    width: 45px;
    height: 45px;
    background-color: var(--tertiary-color);
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.menuTop,
.menuCtr,
.menuBtm {
    width: 24px;
    height: 2px;
    background-color: var(--white-color);
    display: flex;
    border-radius: 100px;
    position: absolute;
    transform: rotate(0deg);
    transition: all .8s ease-in-out;
}

.menuTop {
    transform: translateY(-7px);
}

.menuBtm {
    transform: translateY(7px);
}

.navbar-toggler.open .menuCtr {
    transform: translateX(-150%);
}

.navbar-toggler.open .menuTop {
    transform: rotate(43deg);
}

.navbar-toggler.open .menuBtm {
    transform: rotate(-43deg);
}


/* ----------
FOOTER
------------ */
footer {
    color: var(--whitegray-color);
    margin-top: 40px;
}

footer .container {
    background: linear-gradient(91deg, #A4CFF7 6.92%, #6F2BF6 43.88%, #620178 92.86%) border-box;
    padding-top: 2px;
}

.borderFooter {
    background-color: var(--tertiary-color);
    padding-top: 20px;
    padding-bottom: 30px;
}

/* ----------
HOME STYLES 
------------ */

#home {
    min-height: 100vh;
    width: 100vw;
    /* background-image: url(../img/lineshome.png); */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    position: relative;
    transition: all .5s ease-in-out;
}

.titleBanner {
    color: var(--white-color);
    font-weight: 800;
    font-size: 80px;
    line-height: 80px;
    text-align: center;
    width: 100%;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.30);
    font-family: "Nunito Sans";
}

.videoHome {
    width: 100%;
    position: absolute;
    /* bottom: 10%; */
    z-index: -1;
    transition: all 1s ease-in-out;
}

.txtGradient {
    background: linear-gradient(90deg, #A4CFF7 0.04%, #6F2BF6 122.8%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
    position: relative;
}

.scrollDown {
    position: absolute;
    bottom: 2rem;
}

.mouse {
    width: 30px;
    height: 60px;
    border: 1px solid var(--gray-light);
    border-radius: 60px;
    position: relative;

    &::before {
        content: '';
        width: 12px;
        height: 12px;
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--gray-light);
        border-radius: 50%;
        opacity: 1;
        animation: wheel 2s infinite;
        -webkit-animation: wheel 2s ease-in-out infinite;
    }
}

@keyframes wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    80% {
        top: 58px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 0;
    }
}

@-webkit-keyframes wheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    80% {
        top: 58px;
        opacity: 0;
    }

    100% {
        top: 6px;
        opacity: 0;
    }
}

/* ----------
SERVICIOS STYLES 
------------ */
#servicios {
    padding-top: 100px;
    margin-bottom: 170px;
}

/* ----------
DIVIDER STYLES 
------------ */
/* #divider {
    margin-bottom: 150px;
} */

.contDivider {
    background: var(--main-gradient);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    padding: 40px 30px;
}

.contDivider::before {
    position: absolute;
    content: url(../img/grainy.png);
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}

.textDivider {
    color: #C7C6CB;
    font-family: "Nunito Sans";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
    position: relative;
    z-index: 3;
}

.gifCont {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.contactoGif {
    max-height: 180px;
    animation: contactoGif 12s ease-in-out infinite;
}

@keyframes contactoGif {
    0% {
        transform: rotate(0deg);
    }

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

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

.symbolGif {
    position: absolute;
    width: 40px;
}

.symbolGif path {
    fill: var(--whitegray-color);
}

/* ----------
CONÓCENOS STYLES 
------------ */
#conocenos {
    padding-top: 120px;
    /* margin-bottom: 130px; */
    overflow: hidden;
    padding-bottom: 60px;
}

.tickerwrapper {
    position: relative;
    left: 0%;
    background: var(--main-gradient);
    padding: 14px 0;
    overflow: hidden;
    cursor: pointer;
    margin-top: 150px;
    transform: rotate(3deg);
    width: 110%;
}

.tickerwrapper ul.list li:first-child {
    padding-left: 0;
}

.tickerwrapper ul.list {
    position: relative;
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: inline-flex;
    align-items: center;
}

.tickerwrapper ul.list.cloned {
    position: absolute;
    top: 0px;
    left: 0px;
}

.tickerwrapper ul.list li {
    float: left;
    padding-left: 20px;
    color: #FFF;
    font-family: "Nunito Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

/* ----------
CONTACTANOS STYLES 
------------ */
#contactanos {
    padding-top: 120px;
}

.formAside {
    background: var(--gradient-135);
    padding: 20px;
    border-radius: 40px 0 0 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.formAside::before {
    content: url(../img/grainy.png);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.formAside .symbolForm {
    width: 100%;
    position: absolute;
    z-index: 2;
    bottom: -14%;
    left: -20%;
}

.datosContacto {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}



/* ----------
POWERED BY NGT STYLES 
------------ */
#powered {
    padding-top: 170px;
    margin-bottom: 120px;
}

.cardNerp {
    height: 100%;
    width: 100%;
    background-image: url(../img/nerp/gifnerpback.gif);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
    padding: 10px;
    font-family: "Outfit";
    position: relative;
    overflow-x: clip;
}

.cardNerp .containerInfo {
    position: relative;
    height: 100%;
    z-index: 2;
    padding: 30px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cardNerp .containerInfo::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 18px;
    border: 1px solid #FFF;
    background: linear-gradient(113deg, rgba(255, 255, 255, 0.70) -11.74%, rgba(255, 255, 255, 0.30) 106.08%);
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(30px);
    z-index: -1;
    top: 0;
    left: 0;
}

.cardNerp .containerInfo p {
    color: #2f2f2f;
    font-weight: 400;
    max-width: 40%;
    line-height: normal;
}

.cardNerp .logoNerp {
    width: 120px;
    margin-bottom: 30px;
}

.cardNerp .btnNerp {
    display: inline-flex;
    padding: 6px 20px;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: rgb(225, 56, 58);
    background: linear-gradient(90deg, rgba(225, 56, 58, 1) 0%, rgba(227, 151, 64, 1) 100%);
    color: #FFF;
    text-align: center;
    font-family: "Outfit";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-top: 30px;
    width: fit-content;
}

.cardNerp .btnNerp i {
    color: var(--white-color);
}

.cardNerp .underline {
    color: #2f2f2f;
    font-weight: 300;
    font-size: 14px;
    padding-left: 10px;
    margin-top: 6px;
}

.cardNerp .nerpCharacter {
    height: 130%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.cardMonedero {
    background-color: #3A3A3A;
    background-image: url(../img/monedero/back.png);
    background-size: 150%;
    background-position: 50% -30%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat';
    padding: 30px 16px;
}

.cardMonedero .logoMonedero {
    width: 120px;
}

.cardMonedero .containerInfo {
    background-color: #ffffff;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 30px;
    padding: 30px 20px 40px;
    position: relative;
    display: flex;
    justify-content: center;
}

.cardMonedero .containerInfo p {
    margin: 0;
    line-height: normal;
    color: #3A3A3A;
}

.btnMonedero {
    background-color: #0C0C0C;
    color: #ffffff;
    padding: 8px 30px;
    border-radius: 1000px;
    text-align: center;
    gap: 6px;
    position: absolute;
    bottom: -24px;
    font-family: 'Bebas Neue';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btnMonedero i {
    color: #D3592F;
}

.cardMonedero .underline {
    font-size: 14px;
    color: #ffffff;
    font-family: 'Montserrat';
}

/* ----------
CLIENTES STYLES 
------------ */
#preFooter {
    margin-bottom: 60px;
}

.contClientes {
    border: 2px solid var(--fourth-color);
    border-radius: 30px;
    position: relative;
}

.contClientes::after {
    content: 'Nuestros clientes';
    position: absolute;
    background: var(--main-gradient);
    color: var(--white-color);
    font-family: 'Nunito Sans';
    font-weight: 700;
    border-radius: 100px;
    padding: 6px 14px;
    top: -20px;
    left: 30px;
}

.swiper {
    width: auto;
    height: auto;
    padding: 60px 0 54px;
    position: relative;
    z-index: 5;
}

.swiper::before {
    position: absolute;
    content: url(../img/blobs/1.svg);
    left: -15%;
}

.swiper::after {
    position: absolute;
    content: url(../img/blobs/2.svg);
    right: -30%;
    top: -60%;
    width: 60%;
}

.swiper-slide {
    width: auto;
}

.swiper-slide img {
    width: 160px;
    opacity: .20;
    transition: all .5s ease-in-out;
}

.swiper-slide img:hover {
    opacity: 1;
}

.swiper-pagination {
    bottom: 10px;
}

.swiper-pagination-bullet {
    background: var(--complementary-second-color);
}

.contCertificados {
    background: var(--main-gradient);
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 12px;
}

.contCertificados img {
    height: 100px;
}

.contCertificados::after {
    content: 'Certificados';
    position: absolute;
    background: var(--main-gradient);
    color: var(--white-color);
    font-family: 'Nunito Sans';
    font-weight: 700;
    border-radius: 100px;
    padding: 6px 14px;
    top: -20px;
    left: 30px;
}


/* ----------
COMING SOON STYLES 
------------ */
main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url(../img/backInterior.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}

#comingsoon {
    margin: auto;
    padding-bottom: 40px;
    padding-top: 80px;
}

#comingsoon .form {
    flex-direction: row;
    align-items: flex-start;
    border-radius: 40px;
    justify-content: start;
}

.transitionScreen {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #E94E1B;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: transitionScreen 5s ease-in-out forwards;
}

@keyframes transitionScreen {
    0% {
        background-color: #E94E1B;
    }

    10% {
        background-color: #E94E1B;
    }

    40% {
        background-color: var(--tertiary-color);
    }

    90% {
        opacity: 1;
    }

    99% {
        background-color: var(--tertiary-color);
        opacity: 0;
        z-index: 30;
    }

    100% {
        background-color: var(--tertiary-color);
        opacity: 0;
        z-index: -30;
    }
}

.symbolDots {
    height: 100px;
    display: block;
    transition: all .5s ease-in-out;
    animation: symbolDots 1.8s ease-in-out forwards;
}

@keyframes symbolDots {
    0% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(80vw);
    }
}

.animateNgt {
    position: absolute;
    display: inline-flex;
    align-items: center;
}

.animateNgt .logoSymbolCont {
    margin-right: 25px;
    transform: translateX(100vw);
    animation: logoSymbolCont 3.5s ease-in-out forwards;
}

@keyframes logoSymbolCont {
    0% {
        transform: translateX(100vw);
    }

    40% {
        transform: translateX(100vw);
    }

    80% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(0);
    }
}

.animateNgt .logoSymbol {
    height: 100px;
    transform: rotate(180deg);
    animation: logoSymbol 3.5s ease-in-out forwards;
}

@keyframes logoSymbol {
    0% {
        transform: rotate(180deg);
    }

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

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

/* .animateNgt .logoType {
    height: 75px;
    transform: translateY(80px);
    animation: logoType 6s ease-in-out forwards;
} */

.animateNgt .logoType.logoN {
    height: 75px;
    transform: translateY(80px);
    opacity: 0;
    animation: logoTypeN 3.5s ease-in-out forwards;
}

@keyframes logoTypeN {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }

    78% {
        transform: translateY(80px);
        opacity: 0;
    }

    92% {
        transform: translateY(0px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.animateNgt .logoType.logoG {
    height: 75px;
    transform: translateY(80px);
    opacity: 0;
    animation: logoTypeG 3.5s ease-in-out forwards;
}

@keyframes logoTypeG {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }

    72% {
        transform: translateY(80px);
        opacity: 0;
    }

    86% {
        transform: translateY(0px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.animateNgt .logoType.logoT {
    height: 75px;
    transform: translateY(80px);
    opacity: 0;
    animation: logoTypeT 3.5s ease-in-out forwards;
}

@keyframes logoTypeT {
    0% {
        transform: translateY(80px);
        opacity: 0;
    }

    66% {
        transform: translateY(80px);
        opacity: 0;
    }

    80% {
        transform: translateY(0px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.animateNgt .logoN {
    margin-right: 12px;
}




/* ----------
ALERTS STYLES 
------------ */
.alert {
    width: 100%;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    z-index: 1;
    border: none;
    /* background-color: rgba(4, 3, 14, .6); */
    background: transparent;
}

.alert-box {
    position: relative;
    /* top: 20px; */
    /* right: 20px; */
    z-index: 9999;
    padding: 40px 20px;
    border-radius: 20px;
    /* min-width: 450px; */
    min-height: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: var(--main-gradient);
    border: none;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    box-shadow: 0px 0px 15px 0px rgba(164, 207, 247, 0.20);
    transform: translateY(50%);
    opacity: 0;
    animation: alertTransition 5s ease-in-out forwards;
}

@keyframes alertTransition {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    20% {
        transform: translateY(0%);
        opacity: 1;
    }

    80% {
        transform: translateY(0%);
        opacity: 1;
    }

    100% {
        transform: translateY(50%);
        opacity: 0;
    }
}

.alert-box::before {
    position: absolute;
    content: '';
    background-color: var(--tertiary-color);
    width: 98%;
    height: 94%;
    border-radius: 20px;
}

.alert-box h1 {
    font-size: 22px;
    margin-bottom: 20px;
}

.alert-box.error h1::before {
    /* content: url(../img/alert/send.gif); */
    content: '';
    background-image: url(../img/alert/danger.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.alert-box.success h1::before {
    /* content: url(../img/alert/send.gif); */
    content: '';
    background-image: url(../img/alert/send.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.alert-box p {
    z-index: 2;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--whitegray-color);
}


/* ----------
PORTAFOLIO STYLES 
------------ */

#portafolio {
    padding-top: 150px;
    padding-bottom: 100px;
}

.portfolioTitle {
    font-size: 18px;
    color: var(--whitegray-color);
    font-weight: 400;
    margin-bottom: 2px;
}

#filters {
    justify-content: center;
    display: flex;
    padding: 0;
    list-style: none;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 40px;
    gap: 14px;
    flex-wrap: wrap;
}

#filters li span {
    display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: var(--gray-light);
    border: 2px solid var(--fourth-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 100px;
    transition: all ease-in-out 0.25s;
}

#filters li span::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
    left: -100%;
    top: 0;
    border-radius: 100px;
    transition: all ease-in-out 0.5s;
}

#filters li span.active {
    color: var(--white-color);
    font-weight: 700;
}

#filters li span.active::before {
    left: 0;
    z-index: -1;
}

.gallery-item {
    display: none;
    margin-bottom: 40px;
}

.gallery-item .galleryOpen {
    background: none;
    border: none;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease-in-out;

}

.gallery-item:hover img {
    transform: scale(1.2);
}

.inside {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 30px;
}

.inside .text {
    max-width: 90%;
}

.inside p {
    margin-bottom: 0;
    font-size: 14px;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}

.details {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 1;
    display: flex;
    align-items: end;
    justify-content: start;
    z-index: 2;
    padding: 16px;
    background: linear-gradient(180deg, rgba(4, 3, 14, 0.00) 0%, #04030E 100%);
    transition: all 0.3s ease-in-out;
}

.linkIconPortfolio {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
    height: 20%;
}

.linkIconPortfolio i {
    position: absolute;
    transition: all .5s ease-in-out;
}

.gallery-item:hover .linkIconPortfolio i:nth-child(1) {
    transform: translate(100px, -100px);
}

.linkIconPortfolio i:nth-child(2) {
    transform: translate(-100px, 100px);
}

.gallery-item:hover .linkIconPortfolio i:nth-child(2) {
    transform: translate(0px, 0px);
}

/* ----------
GALLERY STYLES 
------------ */
#carouselGallery {
    display: flex;
    align-items: center;
}

.carousel-control-next,
.carousel-control-prev {
    top: auto;
    bottom: auto;
    background-color: var(--tertiary-color);
    width: 50px;
    height: 50px;
    opacity: 1;
}

.carousel-control-next {
    border-radius: 10px 0 0 10px;
}

.carousel-control-prev {
    border-radius: 0 10px 10px 0;
}

.carousel-control-next i,
.carousel-control-prev i {
    font-size: 20px;
}


.galleryView .modal-dialog {
    max-width: 66%;
}

.galleryView .modal-content {
    background-color: transparent;
    border: none;
}

.galleryView .modal-body {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.galleryView .btnClose {
    position: absolute;
    z-index: 10;
    right: 22px;
    top: 22px;
    background-color: transparent;
    border: none;
}

.galleryView .btnClose svg {
    width: 22px;
}

.galleryView .modal-footer {
    border: none;
    margin-top: 10px;
    background-color: var(--tertiary-color);
    flex-direction: column;
    align-items: flex-start;
    border-radius: 20px;
}

.galleryView .iconCategory {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 8;
    width: 50px;
}

.galleryView.softwareCat .iconCategory {
    content: url(../img/icons/iconSoftware.png);
}


/* ----------
BLOG STYLES 
------------ */
#blog {
    padding-top: 180px;
}