@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-Thin.ttf) format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-ThinItalic.ttf) format("truetype");
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-ExtraLight.ttf) format("truetype");
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-ExtraLightItalic.ttf) format("truetype");
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-LightItalic.ttf) format("truetype");
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: Kanit;
    src: url(media/fonts/Kanit-Regular.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-RegularItalic.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-MediumItalic.ttf) format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-SemiBoldItalic.ttf) format("truetype");
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-BoldItalic.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-ExtraBold.ttf) format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-ExtraBoldItalic.ttf) format("truetype");
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-Black.ttf) format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "Kanit";
    src: url(media/fonts/Kanit-BlackItalic.ttf) format("truetype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "JetBrains";
    src: url(media/fonts/JetBrainsMono-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "Sansation";
    src: url(media/fonts/sansation.ttf) format("truetype");
}

body {
    margin: 0px;
    overflow-x: hidden;
}

* {
    font-family: Kanit, Arial;
    font-weight: 300;
}

.navigation {
    background-color: rgb(30, 30, 30);
    position: fixed;
    width: 100vw;
    height: 75px;
    z-index: 10;
    padding-top: 13px;
    box-sizing: border-box;
}

.nav-link {
    color: white;
    font-size: 30px;
    font-weight: 200;
    margin-left: 20px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.nav-link:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    border-radius: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-link[active=true]:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@keyframes loadIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popInS85 {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.85);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.load-in {
    opacity: 0;
    transform: scale(0.7);
}

.load-in.pop-in,
.load-in.card {
    opacity: 0.5;
    transform: scale(0);
}

.load-in.loaded {
    animation: 0.3s ease-in-out 0s 1 loadIn;
    animation-fill-mode: forwards;
}

.load-in.pop-in.loaded,
.load-in.loaded.card {
    animation: 0.3s cubic-bezier(.06, .73, .51, 1.34) 0s 1 popIn;
    animation-fill-mode: forwards;
}

.load-in.loaded.card.s85 {
    animation: 0.3s cubic-bezier(.06, .73, .51, 1.34) 0s 1 popInS85;
    animation-fill-mode: forwards;
}

#title-background {
    background-image: linear-gradient(rgb(60, 60, 60), rgb(20, 20, 20));
    width: 100vw;
    height: 100vh;
}

#title-position-container {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

#title-profile-image-buffer {
    width: 100px;
    height: 200px;
    display: inline;
    animation-delay: 0.2s;
}

@keyframes profileImageAnimation {
    0% {
        clip-path: ellipse(50% 47%);
    }

    50% {
        clip-path: ellipse(47% 50%);
    }

    100% {
        clip-path: ellipse(50% 47%);
    }
}

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

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

#title-profile-image {
    position: absolute;
    width: 200px;
    height: 200px;
    margin-left: -130px;
    animation: 5s ease-in-out 0s infinite profileImageAnimation;
}

#title-profile-image-ellipse-1,
#title-profile-image-ellipse-2 {
    width: 220px;
    height: 200px;
    position: absolute;
    margin-left: -140px;
    clip-path: ellipse(50% 50%);
}

#title-profile-image-ellipse-1 {
    background-image: radial-gradient(ellipse at center, rgb(112, 116, 255) 65%, transparent 70%);
    animation: 15.5s linear 0s infinite rotate;
}

#title-profile-image-ellipse-2 {
    background-image: radial-gradient(ellipse at center, rgb(255, 141, 88) 65%, transparent 70%);
    animation: 28s linear 0s infinite rotate;
    animation-direction: reverse;
}

#title-container {
    text-align: center;
}

#title-text {
    color: white;
    line-height: 80px;
}

#title-text ._1 {
    font-weight: 200;
    font-size: 50px;
}

#title-text ._2 {
    font-weight: 400;
    font-size: 100px;
}

#title-text-carousel {
    margin-top: -10px;
    overflow: hidden;
    position: relative;
    width: 600px;
    height: 114px;
}

#title-text-carousel .container {
    position: absolute;
    width: 100%;
    text-align: center;
}

#title-text-carousel span {
    font-weight: 300;
    font-size: 90px;
    white-space: nowrap;
}

#title-text-carousel span.entrepreneur {
    font-size: 80px;
}

#title-text-carousel span._1 {
    background: linear-gradient(90deg, rgb(112, 116, 255), rgb(255, 141, 88));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#title-text-carousel span._2 {
    color: white;
}

.section {
    width: 100vw;
    height: calc(100vh - 75px);
    background-color: white;
}

.section-position {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 75px);
    width: 100%;
}

.section-container {
    text-align: center;
}

.section-title {
    font-weight: 200;
    font-size: 50px;
}

.section-content-position-container {
    display: block;
    margin-top: 60px;
    width: 100vw;
}

.section-content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-floating-elements * {
    position: absolute;
}

.section-floating-elements * * {
    position: initial;
}

.card-divider {
    width: 30px;
    height: 150px;
}

.card {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    overflow: hidden;
}

.card.mini {
    width: 75px;
    height: 75px;
}

.card.wide {
    width: 300px;
}

.card-content-position {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin-left: -20px;
    margin-top: -20px;
}

.card-content-container {
    text-align: center;
    font-size: 20px;
}

.card.important {
    border: 5px solid;
    width: 140px;
    height: 140px;
}

.card.mini.important {
    width: 65px;
    height: 65px;
}

.card.wide.important {
    width: 290px;
}

.card._1 {
    background-color: rgb(255, 244, 229);
}

.card._1.important {
    border-color: rgb(201, 193, 182);
    filter: drop-shadow(7px 7px rgb(201, 193, 182));
}

.card._2 {
    background-color: rgb(243, 242, 255);
}

.card._2.important {
    border-color: rgb(204, 203, 214);
    filter: drop-shadow(7px 7px rgb(204, 203, 214));
}

.card._3 {
    background-color: rgb(244, 244, 244);
}

.card._3.important {
    border-color: rgb(208, 208, 208);
    filter: drop-shadow(7px 7px rgb(208, 208, 208));
}

.section-title .action-word {
    font-weight: 400;
    font-size: 52px;
    background: linear-gradient(90deg, rgb(58, 65, 255), rgb(255, 123, 62));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.odometer {
    display: inline;
}

.odometer .punctuation {
    display: inline;
}

.odometer .digit-position-container {
    display: inline;
}

.odometer .digit-container {
    overflow: hidden;
    display: inline-block;
    position: relative;
}

.odometer .digit-text-position {
    position: absolute;
    text-align: center;
    width: 100%;
}

.odometer .digit {
    font-family: JetBrains;
}

.odometer .placeholder {
    opacity: 0;
}

@keyframes jbgText {
    0% {
        opacity: 0;
        transform: scale(0, 1) translate(-50%, 0);
    }

    100% {
        opacity: 1;
        transform: scale(1, 1) translate(0, 0);
    }
}

@keyframes jbgContainer {
    0% {
        margin-left: 0;
    }

    100% {
        margin-left: 57px;
    }
}

@keyframes jbgImg {
    0% {
        margin-left: -82px;
        margin-top: 40px;
        opacity: 0;
        transform: rotate(-90deg);
    }

    100% {
        margin-left: -62px;
        margin-top: 20px;
        opacity: 1;
        transform: rotate(0deg);
    }
}

#jbg-image {
    position: absolute;
    margin-left: -82px;
    margin-top: 40px;
    width: 57px;
    height: 57px;
    opacity: 0;
}

#jbg-text-container.loaded #jbg-image {
    opacity: 1;
    animation: 0.3s ease-out 2s 1 jbgImg;
    animation-fill-mode: both;
}

#jbg-text {
    font-family: Sansation;
    color: black;
    text-decoration: none;
}

#jbg-text-container {
    opacity: 1;
    transform: none;
    margin-left: 57px;
    transition: transform 0.3s;
}

#jbg-text-container:hover {
    transform: scale(1.1);
}

#jbg-text-container.loaded {
    animation: 0.3s ease-out 2s 1 jbgContainer;
    animation-fill-mode: both;
}

#jbg-text-container::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 10px;
    margin-top: 67px;
    background-color: rgb(255, 150, 80);
    opacity: 0;
    transform: scale(0, 1) translate(-50%, 0);
}

#jbg-text-container.loaded::before {
    animation: 0.3s ease-out 2s 1 jbgText;
    animation-fill-mode: both;
}

#no-ads-image {
    transform: translate(-50%, -50%) scale(4, 4);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
    transition-delay: 1s;
    transition-timing-function: ease-in;
    position: absolute;
}

.card.loaded #no-ads-image {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 0.5;
}

#no-ads-title {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 50px;
}

#jbg-logo-container img {
    position: absolute;
    width: 50px;
    height: 50px;
}

@keyframes jbg-logo-scale {
    0% {
        transform: scale(1, 1);
    }

    20% {
        transform: scale(1, 1);
    }

    22.5% {
        transform: scale(0.7, 0.7);
    }

    25% {
        transform: scale(1, 1);
    }

    45% {
        transform: scale(1, 1);
    }

    47.5% {
        transform: scale(0.7, 0.7);
    }

    50% {
        transform: scale(1, 1);
    }

    70% {
        transform: scale(1, 1);
    }

    72.5% {
        transform: scale(0.7, 0.7);
    }

    75% {
        transform: scale(1, 1);
    }

    95% {
        transform: scale(1, 1);
    }

    97.5% {
        transform: scale(0.7, 0.7);
    }

    100% {
        transform: scale(1, 1);
    }
}

@keyframes jbg-logo-1 {
    0% {
        margin-left: -50px;
        margin-top: -50px;
    }

    20% {
        margin-left: -50px;
        margin-top: -50px;
    }

    25% {
        margin-left: 0px;
        margin-top: -50px;
    }

    45% {
        margin-left: 0px;
        margin-top: -50px;
    }

    50% {
        margin-left: 0px;
        margin-top: 0px;
    }

    70% {
        margin-left: 0px;
        margin-top: 0px;
    }

    75% {
        margin-left: -50px;
        margin-top: 0px;
    }

    95% {
        margin-left: -50px;
        margin-top: 0px;
    }

    100% {
        margin-left: -50px;
        margin-top: -50px;
    }
}

@keyframes jbg-logo-2 {
    0% {
        margin-left: 0px;
        margin-top: -50px;
    }

    20% {
        margin-left: 0px;
        margin-top: -50px;
    }

    25% {
        margin-left: 0px;
        margin-top: 0px;
    }

    45% {
        margin-left: 0px;
        margin-top: 0px;
    }

    50% {
        margin-left: -50px;
        margin-top: 0px;
    }

    70% {
        margin-left: -50px;
        margin-top: 0px;
    }

    75% {
        margin-left: -50px;
        margin-top: -50px;
    }

    95% {
        margin-left: -50px;
        margin-top: -50px;
    }

    100% {
        margin-left: 0px;
        margin-top: -50px;
    }
}

@keyframes jbg-logo-3 {
    0% {
        margin-left: 0px;
        margin-top: 0px;
    }

    20% {
        margin-left: 0px;
        margin-top: 0px;
    }

    25% {
        margin-left: -50px;
        margin-top: 0px;
    }

    45% {
        margin-left: -50px;
        margin-top: 0px;
    }

    50% {
        margin-left: -50px;
        margin-top: -50px;
    }

    70% {
        margin-left: -50px;
        margin-top: -50px;
    }

    75% {
        margin-left: 0px;
        margin-top: -50px;
    }

    95% {
        margin-left: 0px;
        margin-top: -50px;
    }

    100% {
        margin-left: 0px;
        margin-top: 0px;
    }
}

@keyframes jbg-logo-4 {
    0% {
        margin-left: -50px;
        margin-top: 0px;
    }

    20% {
        margin-left: -50px;
        margin-top: 0px;
    }

    25% {
        margin-left: -50px;
        margin-top: -50px;
    }

    45% {
        margin-left: -50px;
        margin-top: -50px;
    }

    50% {
        margin-left: 0px;
        margin-top: -50px;
    }

    70% {
        margin-left: 0px;
        margin-top: -50px;
    }

    75% {
        margin-left: 0px;
        margin-top: 0px;
    }

    95% {
        margin-left: 0px;
        margin-top: 0px;
    }

    100% {
        margin-left: -50px;
        margin-top: 0px;
    }
}

.card.loaded #jbg-logo-1 {
    animation: 6s ease-in-out 3s infinite jbg-logo-1, 6s ease-in-out 3s infinite jbg-logo-scale;
    margin-left: -50px;
    margin-top: -50px;
}

.card.loaded #jbg-logo-2 {
    animation: 6s ease-in-out 3s infinite jbg-logo-2, 6s ease-in-out 3s infinite jbg-logo-scale;
    margin-top: -50px;
}

.card.loaded #jbg-logo-3 {
    animation: 6s ease-in-out 3s infinite jbg-logo-3, 6s ease-in-out 3s infinite jbg-logo-scale;
}

.card.loaded #jbg-logo-4 {
    animation: 6s ease-in-out 3s infinite jbg-logo-4, 6s ease-in-out 3s infinite jbg-logo-scale;
    margin-left: -50px;
}

#discord-image {
    transition: transform 0.3s;
}

#discord-image:hover {
    transform: scale(1.1, 1.1);
}