@font-face {
    font-family: 'spaceGrotesk';
    src: url(../../fonts/spaceGrotesk.ttf);
}

@font-face {
    font-family: 'cyberformcond';
    src: url(../../fonts/cyberformcond.ttf);
}

:root {
    --Primary-color: #000000;
    --Secondary-color: #ffffff;
    --Hover-color: #9747FF;
    --ActiveMenu-color: #4945FF;
    --Background-circle-color: #4845ff3b;
    --Border-color: #212121;
    --Text-color: #FAFAFA;
    --Transparent: transparent;
    --LightBlack-color: rgba(0, 0, 0, 0.2);
    --TextDark-color: #6633EE;
    --Button-color: #2E2E2E;
    --bg-color: #1A1A1A;
    --ButtonTwo-color: #262626;
    --TimelineText-color: #C5C5C5;
    --TJCGText: -webkit-linear-gradient(180deg, rgba(87, 84, 255, 0.36) 0%, rgba(87, 84, 255, 0.6) 100%);
    --space-font-family: "spaceGrotesk", sans-serif;
    --cyberformcond-font-family: "cyberformcond", sans-serif;
    --FW-100: 100;
    --FW-200: 200;
    --FW-300: 300;
    --FW-400: 400;
    --FW-500: 500;
    --FW-600: 600;
    --FW-700: 700;
    --FW-800: 800;
    --FW-900: 900;
    --FS-14px: 14px;
    --FS-18px: 18px;
    --FS-20px: 20px;
    --FS-22px: 22px;
    --FS-24px: 24px;
    --FS-26px: 26px;
    --FS-30px: 30px;
    --FS-34px: 34px;
    --FS-36px: 36px;
    --FS-38px: 38px;
    --FS-40px: 40px;
    --FS-46px: 46px;
    --FS-50px: 50px;
    --FS-60px: 60px;
    --FS-70px: 70px;
    --FS-80px: 80px;
    --FS-200px: 200px;
}

:root.theme-white {
    --Primary-color: #ffffff;
    --Secondary-color: #000000;
    --Hover-color: #9747FF;

    --ActiveMenu-color: #4945FF;
    --Border-color: #212121;
    --Text-color: #FAFAFA;
    --Transparent: transparent;
    --LightBlack-color: rgba(0, 0, 0, 0.2);
    --TextDark-color: #6633EE;
    --Button-color: #2E2E2E;
    --bg-color: #1A1A1A;
    --ButtonTwo-color: #262626;
    --TimelineText-color: #C5C5C5;
    --TJCGText: -webkit-linear-gradient(180deg, rgba(87, 84, 255, 0.36) 0%, rgba(87, 84, 255, 0.6) 100%);
    --space-font-family: "Space Grotesk", sans-serif;
    --cyberformcond-font-family: "cyberformcond", sans-serif;
    --FW-100: 100;
    --FW-200: 200;
    --FW-300: 300;
    --FW-400: 400;
    --FW-500: 500;
    --FW-600: 600;
    --FW-700: 700;
    --FW-800: 800;
    --FW-900: 900;
    --FS-14px: 14px;
    --FS-18px: 18px;
    --FS-20px: 20px;
    --FS-22px: 22px;
    --FS-24px: 24px;
    --FS-26px: 26px;
    --FS-30px: 30px;
    --FS-34px: 34px;
    --FS-36px: 36px;
    --FS-38px: 38px;
    --FS-40px: 40px;
    --FS-46px: 46px;
    --FS-50px: 50px;
    --FS-60px: 60px;
    --FS-70px: 70px;
    --FS-80px: 80px;
    --FS-200px: 200px;
}

body {
    font-family: var(--space-font-family);
    width: 100vw;
    overflow: hidden;
}

.mainComponentWrapperBG {
    background: var(--Primary-color) url(../../images/global/background.svg) repeat center center;
}

::selection {
    background: var(--ActiveMenu-color);
    color: var(--Secondary-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--ActiveMenu-color);
    color: var(--Secondary-color);
    text-shadow: none;
}

.cyberformcondFont {
    font-family: var(--cyberformcond-font-family);
}

#header {
    z-index: 9999999;
}

.mainComponentWrapper {
    padding: 0 100px;
    overflow: hidden;
}

.headerWrapper {
    padding: 20px 0;
}

.buttonDarkMain {
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    background: var(--Button-color);
    border-radius: 50%;
}

.buttonDarkMainIcon {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuText {
    font-family: var(--space-font-family);
    font-size: var(--FS-26px);
    font-weight: var(--FW-900);
    color: var(--Secondary-color);
    padding: 0;
    margin: 0;
}

.customOffcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: black;
    z-index: 1050;
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
}

.customOffcanvas.show {
    right: 0;
    z-index: 99999999;
}

.customOffcanvasInner {
    padding: 30px 80px;
    position: relative;
    min-height: 100%;
}

.menuItemsList {
    width: 50%;
}

.menuContactInfo {
    width: 45%;
    text-align: end;
}

.menuItems li a {
    font-weight: var(--FW-900);
    color: var(--Secondary-color);
    cursor: pointer;
    border: none;
    width: max-content;
    height: 100PX;
    font-size: var(--FS-80px);
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 20PX 0;
}

.menuContactIcons a {
    cursor: pointer;
    width: 70px;
    height: 100PX;
    font-size: var(--FS-80px);
    display: flex;
    justify-content: end;
    align-items: center;
}

.menuItems li a .span-mother,
.menuContactIcons a .span-mother {
    display: flex;
    overflow: hidden;
}

.menuItems li a:hover .span-mother,
.menuContactIcons a:hover .span-mother {
    position: absolute;
}

.menuItems li a:hover .span-mother span,
.menuContactIcons a:hover .span-mother span {
    transform: translateY(-1.2em);
}

.menuItems li a .span-mother span:nth-child(1),
.menuContactIcons a .span-mother span:nth-child(1) {
    transition: 0.2s;
}

.menuItems li a .span-mother span:nth-child(2),
.menuContactIcons a .span-mother span:nth-child(2) {
    transition: 0.3s;
}

.menuItems li a .span-mother span:nth-child(3),
.menuContactIcons a .span-mother span:nth-child(3) {
    transition: 0.4s;
}

.menuItems li a .span-mother span:nth-child(4),
.menuContactIcons a .span-mother span:nth-child(4) {
    transition: 0.5s;
}

.menuItems li a .span-mother span:nth-child(5),
.menuContactIcons a .span-mother span:nth-child(5) {
    transition: 0.6s;
}

.menuItems li a .span-mother span:nth-child(6),
.menuContactIcons a .span-mother span:nth-child(6) {
    transition: 0.7s;
}

.menuItems li a .span-mother span:nth-child(7),
.menuContactIcons a .span-mother span:nth-child(7) {
    transition: 0.8s;
}

.menuItems li a .span-mother span:nth-child(8),
.menuContactIcons a .span-mother span:nth-child(8) {
    transition: 0.9s;
}

.menuItems li a .span-mother span:nth-child(9),
.menuContactIcons a .span-mother span:nth-child(9) {
    transition: 1s;
}

.menuItems li a .span-mother2,
.menuContactIcons a .span-mother2 {
    display: flex;
    position: absolute;
    overflow: hidden;
    color: var(--ActiveMenu-color);
}

.menuItems li a .span-mother2 span,
.menuContactIcons a .span-mother2 span {
    transform: translateY(1.2em);
}

.menuItems li a:hover .span-mother2 span,
.menuContactIcons a:hover .span-mother2 span {
    transform: translateY(0);
}

.menuItems li a .span-mother2 span,
.menuContactIcons a .span-mother2 span {
    transition: 0.2s;
}

.menuItems li a .span-mother2 span:nth-child(2),
.menuContactIcons a .span-mother2 span:nth-child(2) {
    transition: 0.3s;
}

.menuItems li a .span-mother2 span:nth-child(3),
.menuContactIcons a .span-mother2 span:nth-child(3) {
    transition: 0.4s;
}

.menuItems li a .span-mother2 span:nth-child(4),
.menuContactIcons a .span-mother2 span:nth-child(4) {
    transition: 0.5s;
}

.menuItems li a .span-mother2 span:nth-child(5),
.menuContactIcons a .span-mother2 span:nth-child(5) {
    transition: 0.6s;
}

.menuItems li a .span-mother2 span:nth-child(6),
.menuContactIcons a .span-mother2 span:nth-child(6) {
    transition: 0.7s;
}

.menuItems li a .span-mother2 span:nth-child(7),
.menuContactIcons a .span-mother2 span:nth-child(7) {
    transition: 0.8s;
}

.menuItems li a .span-mother2 span:nth-child(8),
.menuContactIcons a .span-mother2 span:nth-child(8) {
    transition: 0.9s;
}

.menuItems li a .span-mother2 span:nth-child(9),
.menuContactIcons a .span-mother2 span:nth-child(9) {
    transition: 1s;
}

.menuContactText {
    font-size: var(--FS-24px);
    color: var(--Secondary-color);
    font-weight: var(--FW-400);
}

.no-scroll {
    overflow: hidden;
    height: 100vh !important;
}

.btnMainPrimary {
    display: inline-block;
    transition: 0.5s;
    margin: 0;
    outline: 0;
    border: 1px solid var(--Secondary-color);
    padding: 14px 25px;
    border-radius: 50px;
    background: transparent;
    color: var(--Secondary-color);
    font-size: var(--FS-22px);
    font-weight: var(--FW-400);
    position: relative;
}

.btnMainPrimary:hover {
    background-color: var(--Secondary-color);
    color: var(--Primary-color);
    box-shadow: 0px 0px 5px var(--Secondary-color), 0px 0px 25px var(--Secondary-color), 0px 0px 50px var(--Secondary-color), 0px 0px 100px var(--Secondary-color);
}

.footerSectionWrapper {
    padding-bottom: 20px;
}

.footerTextLinks {
    margin: 0;
    text-align: center;
}

.footerTextLinks span,
.footerTextLinks a {
    text-decoration: none;
    font-size: var(--FS-24px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

.tjcgWordWithGlobe {
    padding: 0;
}

.wrapper {
    position: relative;
    display: inline-block;
}

.text-stroke {
    font-size: 35vw;
    font-weight: var(--FW-700);
    color: transparent;
    -webkit-text-stroke: 1px var(--ActiveMenu-color);
    opacity: 0.3;
    position: relative;
    z-index: 1;
    line-height: 700px;
}

.text-fill {
    font-size: 35vw;
    font-weight: var(--FW-700);
    color: var(--ActiveMenu-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    mask-image: radial-gradient(circle 500px at var(--x, 50%) var(--y, 50%), white 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle 500px at var(--x, 50%) var(--y, 50%), white 0%, transparent 70%);
    transition: mask-image 0.1s, -webkit-mask-image 0.1s;
    line-height: 700px;
}

/* .tjcgWord {
    font-size: 35vw;
    font-weight: var(--FW-700);
    text-transform: uppercase;
    text-align: center;
    background: var(--TJCGText);
    -webkit-background-clip: text;
    -webkit-text-stroke: 1px transparent;
    color: var(--Primary-color);
    line-height: 700px;
} */

.footerGlobeWrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.footerGlobeWrapper img {
    animation: spintext 60s linear infinite;
}

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

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

.bannerSectionWrapper .bannerSectionImage {
    position: absolute;
    width: 100%;
    height: auto;
    top: -110px;
    left: 0;
    z-index: 9;
}

.bannerSectionContentWrapper {
    width: 50%;
    margin: auto;
    text-align: center;
    padding-top: 250px;
    position: relative;
    z-index: 9;
}

.bannerSectionSubTitle {
    font-size: var(--FS-24px);
    font-weight: var(--FW-600);
    color: var(--Secondary-color);
    text-transform: uppercase;
}

.bannerSectionTitle {
    font-size: var(--FS-60px);
    font-weight: var(--FW-600);
    word-break: keep-all;
    opacity: 0;
}

.bannerSectionTitle div {
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(255, 255, 255, 1) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sectionHeading {
    font-size: var(--FS-60px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.sectionHeaderWrapper {
    padding: 50px 0 100px 0;
    text-align: center;
}


.animatedTitles,
.subTitleSectionMain {
    opacity: 0;
}


.imageAnimated {
    overflow: hidden;
    opacity: 0;
}

.imageAnimated img {
    display: block;
    width: 100%;
    height: auto;
    transform-origin: center center;
}

#loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(73, 69, 255, 0.1);
    z-index: 999999999999999999;
    backdrop-filter: blur(10px);
    opacity: 1;
    transition: opacity 2s ease, visibility 2s ease;
    visibility: visible;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loaderMainWrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.rotatingImageWrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rotatingImage {
    width: 500px;
    height: auto;
    animation: rotateInfinite 20s linear infinite;
    z-index: 1;
}

.tjcText {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40vw;
    font-weight: var(--FW-900);
    font-family: var(--cyberformcond-font-family);
    color: var(--Transparent);
    -webkit-text-stroke: 2px var(--ActiveMenu-color);
    mix-blend-mode: difference;
    z-index: 2;
    pointer-events: none;
}

@keyframes rotateInfinite {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


#vidoepopup {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
}

.popup-container {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: var(--LightBlack-color);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
}

.popup {
    padding: 0;
    width: 80%;
    border-radius: 15px;
    position: relative;
}

.close-popup {
    display: flex;
    justify-content: flex-end;
}

.close-popup a {
    font-size: 1.2rem;
    background-color: var(--Secondary-color);
    color: var(--Primary-color);
    position: absolute;
    padding: 5px 10px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50%;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.popup video {
    width: 100%;
    border-radius: 15px;
}

.whatsappChatButtonSticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.whatsappChatBtn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: 0.3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: #00d757;
}

.whatsappChatSign {
    width: 100%;
    transition-duration: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsappChatSign svg {
    width: 25px;
}

.whatsappChatSign svg path {
    fill: var(--Secondary-color);
}

.whatsappChatText {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: var(--Secondary-color);
    font-size: var(--FS-16px);
    font-weight: var(--FW-400);
    transition-duration: 0.3s;
}

.whatsappChatBtn:hover {
    width: 150px;
    border-radius: 40px;
    transition-duration: 0.3s;
}

.whatsappChatBtn:hover .whatsappChatSign {
    width: 30%;
    transition-duration: 0.3s;
    padding-left: 10px;
}

.whatsappChatBtn:hover .whatsappChatText {
    opacity: 1;
    width: 70%;
    transition-duration: 0.3s;
    padding-right: 10px;
}

.whatsappChatBtn:active {
    transform: translate(2px, 2px);
}