:root {
    --green-full: #83FA21;
    --green-light: #C8FF9B;
    --dark-grey: #444;
    --white: #fff;
    --black: #000;
}


/* Cokkies Priavacy Terms Brands */
.article-box {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 100px;
    color: #000;
    box-sizing: border-box;
}

.article-box .article {
    width: 100%;
    max-width: 1000px;
    padding-top: 12px;
}

.article-box .article .header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 400px;
    padding: 50px;
    border-radius: 16px;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: all 1s ease;
    background: rgba(0, 0, 0, 0.9);
}

.article-box .article .header:hover {
    transform: scale(1.01);
}

.article-box .article .header .upper-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
}

.article-box .article .header .upper-header .mini-title {
    font-size: 1.125rem;
    font-family: "clashdisplay-semibold";
    letter-spacing: 0.15rem;
    font-weight: bold;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.article-box .article .header .upper-header .date-since {
    display: flex;
    align-items: center;
    opacity: 0.5;
    font-size: 0.875rem;
}

.article-box .article .header .upper-header .date-since .date-value {
    display: inline-block;
    padding-bottom: 2px;
}

.article-box .article .header .upper-header .date-since svg {
    width: 20px;
    margin-left: 10px;
}

.article-box .article .header .lower-header {
    padding-top: 50px;
}

.article-box .article .header .lower-header .tags-container {
    display: flex;
    align-items: center;
    opacity: 0.75;
    margin-bottom: 12px;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.15rem;
}

.article-box .article .header .lower-header .tags-container>span:not(:nth-child(2))::before {
    content: ", ";
}

.article-box .article .header .lower-header .tags-container svg {
    width: 20px;
    margin-right: 10px;
}

.article-box .article .header .lower-header .tags-container span {
    font-size: 0.875rem;
}

.article-box .article .header .lower-header .title {
    margin: 20px 0;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.9;
    color: #fff;
}

.article-box .article .header .lower-header .subtitle {
    width: 60%;
    margin-top: 10px;
    opacity: 0.75;
    line-height: 1.75;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.08rem;
}

.article-box .summary {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding: 30px 50px;
    border-radius: 16px;
    box-shadow: 0 0 0 1px #000000;
}

.article-box .summary .summary-item {
    width: 100%;
    padding-right: 20px;
}

.article-box .summary .summary-item .item-title {
    color: #000000;
}

.article-box .summary .summary-item .item-text {
    margin-top: 12px;
    font-size: 1.5rem;
    color: #353535;
}

.article-box .main-article {
    width: 100%;
    margin-top: 50px;
    padding-bottom: 50px;
    line-height: 1.75;
}

.article-box .main-article h4 {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 1.25em;
    font-family: "clashdisplay-semibold";
    letter-spacing: 0.15rem;
}

.article-box .main-article p {
    margin-bottom: 20px;
    color: #353535;
    font-size: 1.125em;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.15rem;
}

.article-box .main-article blockquote {
    position: relative;
    margin: 40px 0;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 16px;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.1rem;
}

.article-box .main-article blockquote::before {
    content: url("https://icons.craftwork.design/static/media/QuotesFill.f65b03951f44e212816420b00909f4df.svg");
    position: absolute;
    top: -10px;
    left: -10px;
    transform: scale(2);
    opacity: 0.1;
}

.article-box .main-article blockquote::after {
    content: url("https://icons.craftwork.design/static/media/QuotesFill.f65b03951f44e212816420b00909f4df.svg");
    position: absolute;
    bottom: -10px;
    right: -10px;
    transform: scale(2) rotate(180deg);
    opacity: 0.1;
}

.article-box .main-article .gallery {
    display: grid;
    gap: 20px;
    grid-template-areas: "img1 img1 img2 img3" "img1 img1 img4 img5";
    min-height: 400px;
    margin-top: 40px;
}

.article-box .main-article .gallery .image-item {
    min-height: 200px;
    background-color: #eee;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    transition: 250ms;
}

.article-box .main-article .gallery .image-item:hover {
    opacity: 0.9;
    cursor: pointer;
}

.article-box .main-article .gallery .image-1 {
    grid-area: img1;
}

.article-box .main-article .gallery .image-2 {
    grid-area: img2;
}

.article-box .main-article .gallery .image-3 {
    grid-area: img3;
}

.article-box .main-article .gallery .image-4 {
    grid-area: img4;
}

.article-box .main-article .gallery .image-5 {
    grid-area: img5;
}

.article-box .main-article .gallery .gallery-mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    padding: 40px;
    background-color: #22222288;
    transition: 500ms;
}

.article-box .main-article .gallery .gallery-mask img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: 500ms;
}

.article-box .main-article .gallery .mask-off {
    visibility: hidden;
    background-color: #22222200;
}

.article-box .main-article .gallery .mask-off img {
    visibility: hidden;
    opacity: 0;
}

@media screen and (max-width: 1024px) {
    .article-box {
        padding: 100px 30px 30px 30px;
    }

    .article-box .article .header .lower-header .subtitle {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .article-box .article .header .lower-header .title {
        /* word-break: break-all; */
    }

    .article-box .article .summary {
        flex-direction: column;
    }

    .article-box .article .summary .summary-item:not(:last-child) {
        padding-bottom: 30px;
    }

    .article-box .article .main-article .gallery {
        grid-template-areas: "img1 img1" "img1 img1" "img2 img3" "img4 img5";
    }
}

@media screen and (max-width: 425px) {
    .article-box {
        padding: 100px 20px 20px 20px;
    }

    .article-box .article .header {
        padding: 20px;
    }

}

@media screen and (max-width: 410px) {
    .article-box .article .header .lower-header .title {
        font-size: 2rem;
    }

    .article-box .article .header .upper-header .date-since {
        display: none;
    }
}

/* Cokkies Priavacy Terms Brands */

/* career cokkies priavacy terms brands */
.gradients {
    position: absolute;
    height: 100%;
    width: 100%;
}

.gradient-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    top: 0;
}

.gradient {
    position: absolute;
    background: transparent;
    z-index: -1
}

.gradient:before {
    content: "";
    filter: blur(80px);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: block;
    height: 500px;
    width: 500px;
    background: #83FA21;
}

/* Privacy */
.privacy-gradient1:before {
    top: 50px;
    left: 10vw;
}

.privacy-gradient2:before {
    top: 600px;
    left: 80vw;
}

.privacy-gradient3:before {
    top: 900px;
    left: -15vw;

}

.privacy-gradient4:before {
    bottom: -1800px;
    left: 90vw;
}

.privacy-gradient5:before {
    bottom: -1800px;
    left: 20vw;
}

@media (max-width: 1160px) {
    .privacy-gradient1:before {
        left: 5vw;
    }

    .privacy-gradient2:before {
        top: 400px;
    }

    .privacy-gradient3:before {
        top: 900px;
    }

    .privacy-gradient4:before {
        bottom: -1200px;
    }

    .privacy-gradient5:before {
        bottom: -1800px;
    }
}

@media (max-width: 800px) {
    .privacy-gradient1:before {}

    .privacy-gradient2:before {
        top: 600px;
    }

    .privacy-gradient3:before {
        /* top: 1200px; */
        top: 1100;
    }

    .privacy-gradient4:before {
        /* bottom: -2900px; */
        left: -10vw;
        bottom: -2000px;
    }

    .privacy-gradient5:before {
        /* bottom: -1800px; */
        bottom: -1500px;
    }
}

/* Privacy */

/* Terms */
.terms-gradient1:before {
    top: 50px;
    left: 10vw;
}

.terms-gradient2:before {
    top: 600px;
    left: 80vw;
}

.terms-gradient3:before {
    top: 900px;
    left: -15vw;

}

.terms-gradient4:before {
    bottom: -2000px;
    left: 90vw;
}

.terms-gradient5:before {
    bottom: -2200px;
    left: 20vw;
}

@media (max-width: 1160px) {
    .terms-gradient1:before {
        left: 5vw;
    }

    .terms-gradient2:before {
        top: 400px;
    }

    .terms-gradient3:before {
        top: 900px;
    }

    .terms-gradient4:before {
        bottom: -1800px;
        left: 60vw;
    }

    .terms-gradient5:before {
        /* bottom: -2500px; */
        bottom: -2200px;
    }
}

@media (max-width: 800px) {
    .terms-gradient1:before {}

    .terms-gradient2:before {
        top: 600px;
        left: 50vw;
    }

    .terms-gradient3:before {
        top: 1500px;
    }

    .terms-gradient4:before {
        /* bottom: -3100px; */
        left: -10vw;
        bottom: -2500px;
    }

    .terms-gradient5:before {
        bottom: -2600px;
    }
}

/* Terms */

/* Cookies */
.cookies-gradient1:before {
    top: 50px;
    left: 10vw;
}

.cookies-gradient2:before {
    top: 600px;
    left: 80vw;
}

.cookies-gradient3:before {
    top: 900px;
    left: -15vw;

}

.cookies-gradient4:before {
    bottom: -1500px;
    left: 90vw;
}

.cookies-gradient5:before {
    bottom: -1680px;
    left: 20vw;
}

@media (max-width: 1160px) {
    .cookies-gradient1:before {
        left: 5vw;
    }

    .cookies-gradient2:before {
        top: 400px;
    }

    .cookies-gradient3:before {
        top: 1000px;
    }

    .cookies-gradient4:before {
        bottom: -1400px;
        left: 60vw;
    }

    .cookies-gradient5:before {
        bottom: -1680px;
    }
}

@media (max-width: 800px) {
    .cookies-gradient1:before {}

    .cookies-gradient2:before {
        top: 600px;
        left: 50vw;
    }

    .cookies-gradient3:before {
        top: 1200px;
    }

    .cookies-gradient4:before {
        bottom: -2300px;
        left: -10vw;
    }

    .cookies-gradient5:before {
        bottom: -2000px;
    }
}

/* Cookies */

/* Brands */
.brands-gradient1:before {
    top: 560px;
    left: 10vw;
}

.brands-gradient2:before {
    top: 1200px;
    left: 80vw;
}

.brands-gradient3:before {
    top: 1800px;
    left: -15vw;

}

.brands-gradient4:before {
    bottom: -2600px;
    left: 90vw;
}

.brands-gradient5:before {
    bottom: -3200px;
    left: 20vw;
}

@media (max-width: 1160px) {
    .brands-gradient1:before {
        top: 800;
        left: 5vw;
    }

    .brands-gradient2:before {
        top: 1400px;
    }

    .brands-gradient3:before {
        top: 2000px;
    }

    .brands-gradient4:before {
        bottom: -2700px;
        left: 60vw;
    }

    .brands-gradient5:before {
        bottom: -3300px;
    }
}

@media (max-width: 800px) {
    .brands-gradient1:before {
        top: 900;
    }

    .brands-gradient2:before {
        top: 1600px;
        left: 50vw;
    }

    .brands-gradient3:before {
        top: 2400px;
    }

    .brands-gradient4:before {
        bottom: -4000px;
        left: -10vw;
    }

    .brands-gradient5:before {
        bottom: -3200px;
    }
}

/* Brands */

/* Careers */
.career-gradient1:before {
    top: 50px;
    left: 10vw;
}

.career-gradient2:before {
    top: 300px;
    left: 80vw;
}

.career-gradient3:before {
    top: 750px;
    left: -15vw;

}

.career-gradient4:before {
    bottom: -1400px;
    left: 90vw;
}

.career-gradient5:before {
    bottom: -1100px;
    left: 20vw;
}

@media (max-width: 1160px) {
    .career-gradient1:before {
        left: 5vw;
    }

    .career-gradient2:before {
        top: 500px;
    }

    .career-gradient3:before {
        top: 1060px;
    }

    .career-gradient4:before {
        bottom: -1450px;
    }

    .career-gradient5:before {
        bottom: -1200px;
    }
}

@media (max-width: 800px) {
    .career-gradient2:before {
        top: 900px;
    }

    .career-gradient3:before {
        top: 2000px;
    }

    .career-gradient4:before {
        bottom: -3400px;
        left: -10vw;
    }

    .career-gradient5:before {
        bottom: -2800px;
    }
}

@media (max-width: 800px) and (min-width: 750px) {
    .career-gradient4:before {
        bottom: -1800px;
    }

    .career-gradient5:before {
        bottom: -1800px;
    }
}

/* Careers */





/* Career */
.career-sec {
    display: grid;
    grid-template-columns: 45% 50%;
    place-items: center;
    gap: 50px;
    overflow: hidden;
    padding: 130px 80px;
}

.career-sec img {
    width: 100%;
    pointer-events: none;
    user-select: none;
    padding-left: 0px;
}

.career-sec .description {
    color: #000000;
    padding: 0 50px;
}

.career-sec .description h1 {
    font-family: "clashdisplay-bold";
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 30px;
}

.career-sec .description .gradient-text {
    background-color: #000;
    color: transparent;
    background-size: contain;
    font-family: "clashdisplay-variable";
    font-weight: 600;
    background-clip: text;
    -webkit-background-clip: text;
}

.career-sec .description p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.1rem;
}

.career-sec .description #career-form {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.career-sec .description #career-form input {
    padding-inline-end: 10px;
    padding-inline-start: 10px;
    background-color: transparent;
    background: rgba(0, 0, 0, 0.1);
    outline: transparent;
    border: 0;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    margin-right: 10px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
}

.career-sec .description #career-form input::placeholder {
    color: rgb(0, 0, 0);
    opacity: 0.5;
    font-weight: 500;
}

.career-sec .description #career-form input[type="email"] {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    font-size: 1rem;
}

.career-sec .description #career-form input[type="email"]:focus {
    border: transparent;
    outline: 2px dotted rgb(0, 0, 0);
    outline-offset: -3px;
}

.career-sec .description #career-form .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    max-width: max-content;
    max-height: 60px;
    background: black;
    background-size: 200%;
    background-position: left;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    border: 0;
    padding: 12px 16px;
    border-radius: 5px;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5),
        inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.career-sec .description #career-form .btn:hover {
    background-position: right;
}

.career-sec .users-color-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;

}

.career-sec .users-color-container .item {
    max-width: 200px;
    aspect-ratio: 1/1;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5),
        inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.5s linear 1 forwards;
    animation-delay: calc(0.2s * var(--i));
    opacity: 0;
}

.career-sec .users-color-container .item:nth-child(1) {
    background-color: #00a9b8;
    border-radius: 50% 50% 0 50%;
}

.career-sec .users-color-container .item:nth-child(2) {
    border-radius: 50% 50% 0 0;
}

.career-sec .users-color-container .item:nth-child(3) {
    background-color: #6cc164;
    border-radius: 50%;
}

.career-sec .users-color-container .item:nth-child(4) {
    border-radius: 0 0 0 50%;
}

.career-sec .users-color-container .item:nth-child(5) {
    border-radius: 0 50% 50% 0;
}

.career-sec .users-color-container .item:nth-child(6) {
    background-color: #8071a8;
    border-radius: 0 50% 50% 50%;
}

.career-sec .users-color-container .item:nth-child(7) {
    border-radius: 50% 50% 0 50%;
}

.career-sec .users-color-container .item:nth-child(8) {
    background-color: #fe7519;
    border-radius: 50% 0 0 50%;
}

.career-sec .users-color-container .item:nth-child(9) {
    background-color: #f5bec3;
    border-radius: 0 50% 50% 0;
}

.career-sec .users-color-container .item:nth-child(10) {
    border-radius: 50%;
}

.career-sec .users-color-container .item:nth-child(11) {
    background-color: #fcd659;
    border-radius: 50% 0 50% 50%;
}

.career-sec .users-color-container .item:nth-child(12) {
    border-radius: 50% 0 0 0;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*card*/
.card-container {
    min-height: 100vh;
    padding: 60px 50px 20px;
}

.card-container .slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.card-container .slider .card {
    min-width: 300px;
    max-width: 300px;
    aspect-ratio: 3/5;
    border-radius: 15px;
    margin: 20px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.5),
        inset 0px 2px 2px rgba(255, 255, 255, 0.2);
    cursor: grab;
}

.card-container .slider .card .content {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
    padding: 20px;
    background: rgb(21, 21, 21);
    user-select: none;
}

.card-container .slider .card .content::before,
.card-container .slider .card .content::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    animation: rotation 8s linear infinite;
}

.card-container .slider .card .content::after {
    filter: blur(30px);
}

@keyframes rotation {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

.card-container .slider .card .content img {
    aspect-ratio: 3/2;
    border-radius: 10px;
    grid-row: 1 / 5;
    margin-bottom: 20px;
    user-select: none;
    object-fit: cover;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.card-container .slider .card .content h1 {
    font-size: 1rem;
    color: #fff;
    text-align: center;
    grid-row: 5 / 6;
    letter-spacing: 0.1rem;
}


.card-container .slider .card .content p {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    grid-row: 6 / 9;
}

.card-container .slider .card .content.front p {
    font-family: "clashdisplay-regular";
    letter-spacing: 0.08rem;
}

.card-container .slider .card .content.back p {
    font-family: "clashdisplay-regular";
    letter-spacing: 0.08rem;
}

.card-container .slider .card .content .btn-grad {
    background-image: linear-gradient(to right,
            #ece9e6 0%,
            #ffffff 51%,
            #ece9e6 100%);
    padding: 8px 12px;
    color: #000;
    box-shadow: 0 0 5px #eee;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 15px;
    outline: 0;
    font-size: 0.9rem;
    font-weight: 400;
    grid-row: 9 / 10;
    margin: 4px auto 8px;
    cursor: pointer;
    transition: all 0.5s ease-in;
}

@media (max-width: 1215px) {
    .career-sec .description #form .btn {
        font-size: 1rem;
    }
}

@media (max-width: 1015px) {
    .career-sec {
        grid-template-columns: 45% 50%;
        gap: 50px;
        padding: 140px 50px;
    }

    .career-sec .btn {
        padding: 8px 12px;
    }
}

@media (max-width: 865px) {
    .career-sec {
        grid-template-columns: 45% 50%;
        gap: 60px;
        padding: 130px 70px;
    }

    .career-sec .users-color-container {
        gap: 15px;
    }
}

@media (max-width: 815px) {
    .career-sec {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
            "userscolorcontainer"
            "description";
        gap: 30px;
        padding: 90px 80px 70px;
    }

    .career-sec .users-color-container {
        grid-area: userscolorcontainer;
        gap: 20px;
    }

    .career-sec .description {
        grid-area: description;
        padding: 0;
        text-align: center;
    }

    .career-sec .description #form {
        justify-content: center;
    }
}

@media (max-width: 460px) {
    .career-sec {
        gap: 0;
        padding: 30px 40px;
    }

    .career-sec .description #form {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 20px;
    }

    .career-sec .description #form input[type="email"]:focus {
        outline-offset: 6px;
    }

}

/* cards */
.card-container .slider .flips {
    position: relative;
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 1em;
}

.card-container .slider .flips>.front,
.card-container .slider .flips>.back {
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-duration: 0.5s;
    transition-property: transform, opacity;
}

.card-container .slider .flips>.front {
    transform: rotateY(0deg);
}

.card-container .slider .flips>.back {
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(-180deg);
    background: rgb(21, 21, 21);
    user-select: none;
    display: block;
    color: white;
    background-size: cover !important;
    background-position: center !important;
    padding: 1em 2em;
    border-radius: 10px;
}

.card-container .slider .flips:hover>.front {
    transform: rotateY(180deg);
}

.card-container .slider .flips:hover>.back {
    opacity: 1;
    transform: rotateY(0deg);
}

.card-container .slider .flips.flip-vertical>.back {
    transform: rotateX(-180deg);
}

.card-container .slider .flips.flip-vertical:hover>.front {
    transform: rotateX(180deg);
}

.card-container .slider .flips.flip-vertical:hover>.back {
    transform: rotateX(0deg);
}


.card-container .slider .flips .front,
.card-container .slider .flips .back {
    padding: 20px;
}

.card-container .slider .flips h1 {
    padding: 20px 0 40px 0;
}

.card-container .slider .flips .back h1 {
    padding: 20px 0 60px 0;

}

/* .card-container .slider .flips > .front p, */
.card-container .slider .flips>.back p {
    font-size: 0.9125rem;
    line-height: 160%;
    color: #999;
}

/* Careers */



/* Vision */

.vision {
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
    font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
    background-color: hsl(223, 10%, 90%);
    color: hsl(233, 10%, 10%);
    /* height: 100vh; */
    transition:
        background-color 0.3s,
        color 0.3s;
    padding-top: 100px;
}

.vision h1 {
    font-size: 3em;
    margin: 0 0 1rem;
    padding-top: 1.5rem;
    text-align: center;
}

.vision h4 {
    font-size: 2em;
    text-align: center;
    margin: 0 0 3rem;
}

.vision button {
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
}

.vision a {
    color: hsl(223, 90%, 50%);
    transition: color 0.3s;
}

.vision .btn {
    background-color: hsl(223, 10%, 10%);
    border-radius: 0.25em;
    color: hsl(223, 10%, 90%);
    cursor: pointer;
    padding: 0.8em 0.9em;
    transition:
        background-color calc(0.3s / 2) linear,
        color 0.3s;
    -webkit-tap-highlight-color: transparent;
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
}

.vision .btn:hover {
    background-color: hsl(223, 10%, 50%);
}

.vision .btn-group {
    display: flex;
    gap: 1em;
    margin-bottom: 1.5em;
}

.vision .timeline {
    margin: auto;
    margin-top: 150px;
    padding: 0 1.5em;
    width: 100%;
    max-width: 36em;
}

.vision .timeline .timeline__item {
    position: relative;
    padding-bottom: 2.25em;
}

.vision .timeline .timeline__item:not(:last-child):before {
    background-color: currentColor;
    content: "";
    display: block;
    position: absolute;
    top: 1em;
    left: 2.625em;
    width: 0.125em;
    height: 100%;
    transform: translateX(-50%);
}

[dir="rtl"] .vision .timeline .timeline__item:not(:last-child):before {
    right: 2.625em;
    left: auto;
    transform: translateX(50%);
}

.vision .timeline .timeline__item-header {
    display: flex;
}

.vision .timeline label {
    position: relative;
    background-color: transparent;
    border-radius: 0.25em;
    border: 2px solid;
    cursor: pointer;
    flex-shrink: 0;
    margin-inline-end: 0.25em;
    outline: transparent;
    width: 2em;
    height: 2em;
    transition:
        background-color calc(0.3s / 2) linear,
        color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.vision .timeline label:focus-visible,
.vision .timeline label:hover {
    background-color: hsl(223, 10%, 50%, 0.4);
}

.vision .timeline .timeline__arrow-icon {
    display: block;
    pointer-events: none;
    transform: rotate(-90deg);
    transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    width: 100%;
    height: auto;
}

[dir="rtl"] .vision .timeline .timeline__arrow-icon {
    transform: rotate(90deg);
}

.vision .timeline .timeline__dot {
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin: 0.625em 0;
    margin-inline-end: 1em;
    position: relative;
    width: 0.75em;
    height: 0.75em;
}

.vision .timeline .item-expand {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.vision .timeline .timeline__meta {
    height: auto;
    width: 100%;
}

.vision .timeline .timeline__date {
    font-size: 0.833em;
    line-height: 2.4;
    font-family: "clashdisplay-variable";
    letter-spacing: 0.05rem;
}

.vision .timeline .timeline__title {
    font-size: 1.5em;
    line-height: 1.333;
    font-family: "clashdisplay-variable";
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.vision .timeline .timeline__item-body {
    border-radius: 0.375em;
    overflow: hidden;
    margin-top: 0.5em;
    margin-inline-start: 4em;
    height: 0;
}

.vision .timeline .timeline__item-body-content {
    background-color: hsl(223, 10%, 50%, 0.2);
    opacity: 0;
    padding: 0.5em 0.75em;
    border-radius: 0.25em;
    visibility: hidden;
    height: 0;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.05rem;
}

@media (prefers-color-scheme: dark) {
    .vision {
        --bg: hsl(223, 10%, 10%);
        --fg: hsl(223, 10%, 90%);
        --primary: hsl(223, 90%, 70%);
    }
}

@media screen and (max-width: 950px) {
    .vision h1 {
        font-size: 2em;
    }

    .vision h4 {
        font-size: 1.5em;
    }
}

/* Vision */


/* Legacy */
.legacy {
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
    font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
    background-color: hsl(223, 10%, 90%);
    color: hsl(233, 10%, 10%);
    /* height: 100vh; */
    transition:
        background-color 0.3s,
        color 0.3s;
    padding-top: 100px;
}

.legacy h1 {
    font-size: 3em;
    margin: 0 0 1rem;
    padding-top: 1.5rem;
    text-align: center;
}

.legacy h4 {
    font-size: 2em;
    text-align: center;
    margin: 0 0 3rem;
}

.legacy button {
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
}

.legacy a {
    color: hsl(223, 90%, 50%);
    transition: color 0.3s;
}

.legacy .btn {
    background-color: hsl(223, 10%, 10%);
    border-radius: 0.25em;
    color: hsl(223, 10%, 90%);
    cursor: pointer;
    padding: 0.8em 0.9em;
    transition:
        background-color calc(0.3s / 2) linear,
        color 0.3s;
    -webkit-tap-highlight-color: transparent;
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
}

.legacy .btn:hover {
    background-color: hsl(223, 10%, 50%);
}

.legacy .btn-group {
    display: flex;
    gap: 1em;
    margin-bottom: 1.5em;
}

.legacy .timeline {
    margin: auto;
    margin-top: 150px;
    padding: 0 1.5em;
    width: 100%;
    max-width: 36em;
}

.legacy .timeline .timeline__item {
    position: relative;
    padding-bottom: 2.25em;
}

.legacy .timeline .timeline__item:not(:last-child):before {
    background-color: currentColor;
    content: "";
    display: block;
    position: absolute;
    top: 1em;
    left: 2.625em;
    width: 0.125em;
    height: 100%;
    transform: translateX(-50%);
}

[dir="rtl"] .legacy .timeline .timeline__item:not(:last-child):before {
    right: 2.625em;
    left: auto;
    transform: translateX(50%);
}

.legacy .timeline .timeline__item-header {
    display: flex;
}

.legacy .timeline label {
    position: relative;
    background-color: transparent;
    border-radius: 0.25em;
    border: 2px solid;
    cursor: pointer;
    flex-shrink: 0;
    margin-inline-end: 0.25em;
    outline: transparent;
    width: 2em;
    height: 2em;
    transition:
        background-color calc(0.3s / 2) linear,
        color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.legacy .timeline label:focus-visible,
.legacy .timeline label:hover {
    background-color: hsl(223, 10%, 50%, 0.4);
}

.legacy .timeline .timeline__arrow-icon {
    display: block;
    pointer-events: none;
    transform: rotate(-90deg);
    transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    width: 100%;
    height: auto;
}

[dir="rtl"] .legacy .timeline .timeline__arrow-icon {
    transform: rotate(90deg);
}

.legacy .timeline .timeline__dot {
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin: 0.625em 0;
    margin-inline-end: 1em;
    position: relative;
    width: 0.75em;
    height: 0.75em;
}

.legacy .timeline .item-expand {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.legacy .timeline .timeline__meta {
    height: auto;
    width: 100%;
}

.legacy .timeline .timeline__date {
    font-size: 0.833em;
    line-height: 2.4;
    font-family: "clashdisplay-variable";
    letter-spacing: 0.05rem;
}

.legacy .timeline .timeline__title {
    font-size: 1.5em;
    line-height: 1.333;
    font-family: "clashdisplay-variable";
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.legacy .timeline .timeline__item-body {
    border-radius: 0.375em;
    overflow: hidden;
    margin-top: 0.5em;
    margin-inline-start: 4em;
    height: 0;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.05rem;
}

.legacy .timeline .timeline__item-body-content {
    background-color: hsl(223, 10%, 50%, 0.2);
    opacity: 0;
    padding: 0.5em 0.75em;
    border-radius: 0.25em;
    visibility: hidden;
    height: 0;
}

@media (prefers-color-scheme: dark) {
    .legacy {
        --bg: hsl(223, 10%, 10%);
        --fg: hsl(223, 10%, 90%);
        --primary: hsl(223, 90%, 70%);
    }
}

@media screen and (max-width: 950px) {
    .legacy h1 {
        font-size: 2em;
    }

    .legacy h4 {
        font-size: 1.5em;
    }
}

/* Legacy */

/* Story */

.story {
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
    font-size: calc(16px + (24 - 16) * (100vw - 320px) / (2560 - 320));
    background-color: hsl(223, 10%, 90%);
    color: hsl(233, 10%, 10%);
    /* height: 100vh; */
    transition:
        background-color 0.3s,
        color 0.3s;
    padding-top: 100px;
}

.story h1 {
    font-size: 3em;
    margin: 0 0 1rem;
    padding-top: 1.5rem;
    text-align: center;
}

.story h4 {
    font-size: 2em;
    text-align: center;
    margin: 0 0 3rem;
}

.story button {
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
}

.story a {
    color: hsl(223, 90%, 50%);
    transition: color 0.3s;
}

.story .btn {
    background-color: hsl(223, 10%, 10%);
    border-radius: 0.25em;
    color: hsl(223, 10%, 90%);
    cursor: pointer;
    padding: 0.8em 0.9em;
    transition:
        background-color calc(0.3s / 2) linear,
        color 0.3s;
    -webkit-tap-highlight-color: transparent;
    font: 1em/1.5 "IBM Plex Sans", sans-serif;
}

.story .btn:hover {
    background-color: hsl(223, 10%, 50%);
}

.story .btn-group {
    display: flex;
    gap: 1em;
    margin-bottom: 1.5em;
}

.story .timeline {
    margin: auto;
    margin-top: 150px;
    padding: 0 1.5em;
    width: 100%;
    max-width: 36em;
}

.story .timeline .timeline__item {
    position: relative;
    padding-bottom: 2.25em;
}

.story .timeline .timeline__item:not(:last-child):before {
    background-color: currentColor;
    content: "";
    display: block;
    position: absolute;
    top: 1em;
    left: 2.625em;
    width: 0.125em;
    height: 100%;
    transform: translateX(-50%);
}

[dir="rtl"] .story .timeline .timeline__item:not(:last-child):before {
    right: 2.625em;
    left: auto;
    transform: translateX(50%);
}

.story .timeline .timeline__item-header {
    display: flex;
}

.story .timeline label {
    position: relative;
    background-color: transparent;
    border-radius: 0.25em;
    border: 2px solid;
    cursor: pointer;
    flex-shrink: 0;
    margin-inline-end: 0.25em;
    outline: transparent;
    width: 2em;
    height: 2em;
    transition:
        background-color calc(0.3s / 2) linear,
        color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.story .timeline label:focus-visible,
.story .timeline label:hover {
    background-color: hsl(223, 10%, 50%, 0.4);
}

.story .timeline .timeline__arrow-icon {
    display: block;
    pointer-events: none;
    transform: rotate(-90deg);
    transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
    width: 100%;
    height: auto;
}

[dir="rtl"] .story .timeline .timeline__arrow-icon {
    transform: rotate(90deg);
}

.story .timeline .timeline__dot {
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin: 0.625em 0;
    margin-inline-end: 1em;
    position: relative;
    width: 0.75em;
    height: 0.75em;
}

.story .timeline .item-expand {
    display: flex;
    flex-wrap: wrap;
    height: auto;
}

.story .timeline .timeline__meta {
    height: auto;
    width: 100%;
}

.story .timeline .timeline__date {
    font-size: 0.833em;
    line-height: 2.4;
    font-family: "clashdisplay-variable";
    letter-spacing: 0.05rem;
}

.story .timeline .timeline__title {
    font-size: 1.5em;
    line-height: 1.333;
    font-family: "clashdisplay-variable";
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.story .timeline .timeline__item-body {
    border-radius: 0.375em;
    overflow: hidden;
    margin-top: 0.5em;
    margin-inline-start: 4em;
    height: 0;
}

.story .timeline .timeline__item-body-content {
    background-color: hsl(223, 10%, 50%, 0.2);
    opacity: 0;
    padding: 0.5em 0.75em;
    border-radius: 0.25em;
    visibility: hidden;
    height: 0;
    font-family: "clashdisplay-regular";
    letter-spacing: 0.05rem;
}

@media (prefers-color-scheme: dark) {
    .story {
        --bg: hsl(223, 10%, 10%);
        --fg: hsl(223, 10%, 90%);
        --primary: hsl(223, 90%, 70%);
    }
}

@media screen and (max-width: 950px) {
    .story h1 {
        font-size: 2em;
    }

    .story h4 {
        font-size: 1.5em;
    }
}

/* Story Ends */


/* Expanded state */
label {
    position: absolute;
}

#timeline-checkbox1,
#timeline-checkbox2,
#timeline-checkbox3,
#timeline-checkbox4 {
    display: none;
}

#timeline-checkbox1:checked+label,
#timeline-checkbox2:checked+label,
#timeline-checkbox3:checked+label,
#timeline-checkbox4:checked+label {
    background-color: hsl(223, 10%, 50%, 0.4);
}

#timeline-checkbox1:checked+label .timeline__arrow-icon,
#timeline-checkbox2:checked+label .timeline__arrow-icon,
#timeline-checkbox3:checked+label .timeline__arrow-icon,
#timeline-checkbox4:checked+label .timeline__arrow-icon {
    transform: rotate(0);
}

#timeline-checkbox1:checked~.item-expand,
#timeline-checkbox2:checked~.item-expand,
#timeline-checkbox3:checked~.item-expand,
#timeline-checkbox4:checked~.item-expand {
    height: auto;
    transition-delay: 0.3s, 0s;
}

#timeline-checkbox1:checked~.item-expand .timeline__item-body-content,
#timeline-checkbox2:checked~.item-expand .timeline__item-body-content,
#timeline-checkbox3:checked~.item-expand .timeline__item-body-content,
#timeline-checkbox4:checked~.item-expand .timeline__item-body-content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.3s, 0s;
    height: auto;
}

/* Expanded State Ends */




/* publiaction */
.publication {
    height: 100vh;
    padding: 0;
    margin: 0;
}

.publication svg.intro {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 30px 50px -20px #7C05DE;
    /* width: 80vw; */
}

@media screen and (max-width: 1024px) {
    .publication svg.intro {
        height: 80vh;
        width: 100vw;
    }
}

.publication svg.intro .text {
    display: none;
}

.publication svg.intro.go .text {
    font-family: "clashdisplay-bold";
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    display: block;
}

.publication svg.intro.go .text-stroke {
    fill: none;
    stroke: #7C05DE;
    stroke-width: 4px;
    stroke-dashoffset: -900;
    stroke-dasharray: 900;
    stroke-linecap: butt;
    stroke-linejoin: round;
    -webkit-animation: dash 2.5s ease-in-out forwards;
    animation: dash 2.5s ease-in-out forwards;
}

.publication svg.intro.go .text-stroke:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.publication svg.intro.go .text-stroke:nth-child(3) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.publication svg.intro.go .text-stroke-2 {
    stroke: #000000;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.publication svg.intro.go .text-stroke:nth-child(5) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.publication svg.intro.go .text-stroke:nth-child(6) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

@-webkit-keyframes dash {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Publication Ends */


/* Announcement */
.announcement {
    height: 100vh;
    padding: 0;
    margin: 0;
}

.announcement svg.intro {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 30px 50px -20px #7C05DE;
    /* width: 80vw; */
}

@media screen and (max-width: 1024px) {
    .announcement svg.intro {
        height: 80vh;
        width: 100vw;
    }
}

.announcement svg.intro .text {
    display: none;
}

.announcement svg.intro.go .text {
    font-family: "clashdisplay-bold";
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    display: block;
}

.announcement svg.intro.go .text-stroke {
    fill: none;
    stroke: #7C05DE;
    stroke-width: 4px;
    stroke-dashoffset: -900;
    stroke-dasharray: 900;
    stroke-linecap: butt;
    stroke-linejoin: round;
    -webkit-animation: dash 2.5s ease-in-out forwards;
    animation: dash 2.5s ease-in-out forwards;
}

.announcement svg.intro.go .text-stroke:nth-child(2) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.announcement svg.intro.go .text-stroke:nth-child(3) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.announcement svg.intro.go .text-stroke-2 {
    stroke: #000000;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.announcement svg.intro.go .text-stroke:nth-child(5) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.announcement svg.intro.go .text-stroke:nth-child(6) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

@-webkit-keyframes dash {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes dash {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Announcement Ends */

/* form */
#form-message {
    font-family: "clashdisplay-extralight";
    letter-spacing: 0.1rem;
}

#career-form-message {
    font-family: "clashdisplay-extralight";
    letter-spacing: 0.1rem;
    z-index: 99;
    display: block;
    width: 100%;
}

#mainpage-form-message {
    font-family: "clashdisplay-extralight";
    letter-spacing: 0.1rem;
}

/* form */