@import "ItemsWithDetailsGrid.css";

:root {
    --toolbar-buttons-right-margin: 8px;
    --mud-typography-default-family: Quicksand,sans-serif;
}

html
{
    scroll-behavior: smooth;
}

.attention-shadow {
    box-shadow: 0 -1px 10px 0 #0ce86333 !important;
}

.cookie-popup {
    position: absolute;
    bottom: 10px;
    width: 460px;
    background: #0f1115;
    color: #fff;
    left: 10px;
}

#client-references button {
    background: #0f1115;
    width: 50px;
    height: 50px;
    margin: 0 16px;

    .mud-icon-button-label {
        color: #fff;
    }
}

#client-references button:hover {
    background: #000;
}

#client-references p {
    margin-bottom: 20px;
}

.app-drawer {
    width: min(100vw, 400px) !important;
}

.animate__animated {
    width: 100%;
    height: 100%;
}

    /* mud tables */
thead.border-bottom-2 tr th.mud-table-cell {
    border-bottom: 4px solid var(--mud-palette-table-lines);
}

.flexi-grid {
    overflow: scroll;
    display: flex;

    thead {
        position: sticky;
        top: 0;
        background-color: var(--mud-palette-surface);
    }
}


.relative {
    position: relative;
}

.fixed {
    position: fixed;
}


.card {
    background: url(img/bg.jpg) no-repeat center !important;
    padding: 12px;
    border: 2px solid #136945;
}



.button {
    display: inline-block;
    background-color: #444;
    font-size: 14px;
    padding-left: 32px;
    padding-right: 32px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--mud-palette-appbar-text);
    text-decoration: none;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.flex-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fab {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #e74c3b;
    color: white;
    cursor: pointer;
    z-index: 1;
}















/* main layout --> */

.content {
    width: 100vw;
}

.section {

    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF6F7;
    text-align: center;
}

.section > div {
    width: 96%;
}


.section:nth-child(3) {
    font-size: 8vh;
}
.section:nth-child(2) > div {
    max-width: 800px
}
.section:nth-child(3) > div {
    max-width: 900px
}

@media (max-width: 750px) {
    .section:nth-child(2),
    .section:nth-child(3) {
        font-size: 9vw;
    }
}

.section:nth-child(3) a {
    padding: 0 .3em;
}

canvas#neuro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;

}

a.text-link {
    display: inline-block;
    text-decoration: none;
    color: rgb(160, 160, 255) !important;
    font-weight: inherit;
    font-style: inherit;
    margin-top: 10px;
}

a.text-link:hover {
    font-weight: inherit;
    text-decoration: underline;
    color: rgb(160, 160, 255);
}

a.text-link:active {
    color: rgb(160, 255, 255);
}



body {
    background: url('/img/bg.jpg') no-repeat center / cover !important;
}

.vrh-100 {
    height: calc(100vh - var(--mud-appbar-height));
}















button {
    background: #00ffd5;
    color: #111;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
}

.highlighted {
    border: 2px solid #00ffd5;
    background: #282828;
}



















@keyframes fadingIn {
    0% {
        opacity: 0;
    }
    20% {
        opacity: .1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: .8;
    }
}

#landing-video-wrapper {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;

    video {
        min-width: 100vw;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        object-fit: cover;
        animation: fadingIn 2s ease-in 0s forwards;
    }

    .landing-page {
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
    }
}

#landing-video-wrapper::after {
    content: '';
    margin-top: calc(100vh + 2rem);
}









.scroll-down-container {
    position: absolute;
    left: 50%;
    bottom: 0;

    .chevron {
        position: absolute;
        width: 28px;
        height: 2px;
        opacity: 0;
        transform: scale3d(0.5, 0.5, 0.5);
        animation: move 3s ease-out infinite;
    }

    .chevron:first-child {
        animation: move 3s ease-out 1s infinite;
    }

    .chevron:nth-child(2) {
        animation: move 3s ease-out 2s infinite;
    }

    .chevron:before,
    .chevron:after {
        content: ' ';
        position: absolute;
        top: 0;
        height: 100%;
        width: 51%;
        background: #fff;
    }

    .chevron:before {
        left: 0;
        transform: skew(0deg, 30deg);
    }

    .chevron:after {
        right: 0;
        width: 50%;
        transform: skew(0deg, -30deg);
    }
}

html:not([data-scroll='0']) .scroll-down-container {
        display: block;
    }


html:not([data-scroll='0'])  .scroll-down-container {
        display: none;
    }



.scroll-down-container::after {
    margin-top: 100vh;
}


@keyframes move {
    25% {
        opacity: 1;

    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

.text {
    display: block;
    margin-top: 75px;
    margin-left: calc(-50% + 20pt);
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}








.container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px 0px;
}

.servcies-section-wrapper {
    width: 60%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.services-box {
    background-color: #112738;
    color: #e6f7f6;
    width: 250px;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex;

    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}



.services-box h3,
.services-box p {
    margin: 0px;
    text-align: center;
}

.services-box i {
    background-color: #097a4a00;
    color: #9bf1ff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    margin-bottom: 16px;
    font-size: 2.5rem;
}
















/* GDPR notice --> */


.cookie-banner {
    width: 100%;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #05917e;
    height: auto;
    letter-spacing: 0.05em;
    box-shadow: 0 -0.25rem 0.5rem rgba(0, 0, 255, 0.15);
}
.cookie-banner:hover .hand.left {
    transform: rotate(-15deg);
}
.cookie-banner:hover .hand.right {
    transform: rotate(15deg);
}
.cookie-banner:hover .head {
    animation: infinite pre-diabetic-tremors 200ms ease;
}
.cookie-banner:hover .eye {
    animation: infinite eye-convulsions 300ms linear;
}
.cookie-banner.dismissing-banner {
    animation: dismissing-banner 750ms ease;
}
.cookie-banner.dismissing-banner .cookies {
    display: none;
}
.cookie-banner.show-banner {
    display: block;
}
.cookie-banner.chewing .debris {
    visibility: visible;
    transition-delay: 1850ms;
}
.cookie-banner.chewing .head {
    animation: infinite sugar-tremors 200ms ease;
}
.cookie-banner.chewing .eye {
    animation: infinite eye-convulsions 300ms linear;
}
.cookie-banner.chewing .mouth {
    animation: infinite monstrous-chewing 300ms ease 500ms;
}
.cookie-banner.accepting-cookie {
    --delay: 150ms;
    --duration: 1700ms;
}
.cookie-banner.accepting-cookie .cookie {
    --variance: 1;
    animation: eat-cookie 1700ms ease-in;
}
.cookie-banner.accepting-cookie .cookie:nth-child(1) {
    --variance: 3;
    animation-delay: calc(var(--delay) * 1);
}
.cookie-banner.accepting-cookie .cookie:nth-child(2) {
    --variance: 1;
    animation-delay: calc(var(--delay) * 2);
}
.cookie-banner.accepting-cookie .cookie:nth-child(3) {
    --variance: 3;
    animation-delay: calc(var(--delay) * 3);
}
.cookie-banner.accepting-cookie .cookie:nth-child(4) {
    --variance: 2;
    animation-delay: calc(var(--delay) * 4);
}
.cookie-banner.accepting-cookie .cookie:nth-child(5) {
    --variance: 1;
    animation-delay: calc(var(--delay) * 5);
}
.cookie-banner.accepting-cookie .cookie:nth-child(6) {
    --variance: 3;
    animation-delay: calc(var(--delay) * 6);
}
.cookie-banner.accepting-cookie .cookie:nth-child(7) {
    --variance: 1;
    animation-delay: calc(var(--delay) * 7);
}
.cookie-banner.accepting-cookie .cookie:nth-child(8) {
    --variance: 2;
    animation-delay: calc(var(--delay) * 8);
}
.cookie-banner.accepting-cookie .cookie:nth-child(9) {
    --variance: 3;
    animation-delay: calc(var(--delay) * 9);
}
.cookie-banner.accepting-cookie .cookie:nth-child(10) {
    --variance: 2;
    animation-delay: calc(var(--delay) * 10);
}

.banner-content {
    padding: 0.5rem;
    position: relative;
    transition: none;
    margin: auto;
    z-index: 1;
    text-align: center;
}

.accept-cookies-button {
    background: #00aa40;
    border: 2px solid #f7d147;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #f7f7f7;
    font-family: "Roboto Condensed", sans-serif;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.08em;
}
.accept-cookies-button:focus, .accept-cookies-button:hover {
    background: green;
}

.debris {
    visibility: hidden;
}

.crumb {
    width: 1rem;
    height: 0.75rem;
    background: #ff9c15;
    border: 2px solid #854502;
    position: absolute;
    z-index: 2;
    animation: alternate-reverse infinite mouth-debris 1000ms linear;
    position: absolute;
    transform-origin: center center;
}
.crumb:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 500ms;
}
.crumb:nth-child(2) {
    top: 40%;
    left: 40%;
    animation-duration: 750ms;
}
.crumb:nth-child(3) {
    top: 30%;
    left: 60%;
    animation-duration: 600ms;
}

@keyframes mouth-debris {
    100% {
        transform: rotate(-360deg) translateY(50%) scale(0.25);
    }
}
.cookies {
    margin: auto;
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 3rem;
    bottom: 1.25rem;
    z-index: 2;
    left: 50%;
    bottom: 1.25rem;
    z-index: 2;
    transform: translateX(-50%);
}

.cookie {
    vertical-align: middle;
    text-indent: -9999px;
    font-size: 0;
    line-height: inherit;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    color: #5d3a4a;
    padding: 0.5rem 1rem;
    background: no-repeat left 0.5rem top 0.5rem/0.5rem 0.25rem radial-gradient(#854502, #854502 0.25rem, transparent 0.25rem), no-repeat right 0.25rem top 1rem/0.75rem 0.5rem radial-gradient(#854502, #854502 0.25rem, transparent 0.25rem), no-repeat left 1rem bottom 0.75rem/0.5rem 0.25rem radial-gradient(#854502, #854502 0.25rem, transparent 0.25rem), #ff9c15;
    border: 2px solid #854502;
    border-radius: 2rem;
    max-height: 3rem;
    text-overflow: ellipsis;
    box-shadow: inset 0 0.25rem rgba(255, 255, 255, 0.25), inset 0 -0.25rem rgba(0, 0, 0, 0.25);
}

.cookies .cookie {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(-100vh);
}

.biscuit-monster {
    position: absolute;
    top: -2.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.hand {
    transform-origin: top center;
    transition: all 300ms ease;
    position: absolute;
    bottom: 0.25rem;
    content: "";
    background: #0099d5;
    border: 2px solid #0063a6;
    width: 2rem;
    height: 1.5rem;
    display: block;
    border-top-left-radius: 40% 30%;
    border-top-right-radius: 40% 30%;
    border-bottom-right-radius: 50% 70%;
    border-bottom-left-radius: 50% 70%;
    box-shadow: inset 0 0.25rem rgba(255, 255, 255, 0.25), inset 0 -0.25rem rgba(0, 0, 0, 0.25), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}
.hand.left {
    right: 100%;
}
.hand.right {
    left: 100%;
}

.head {
    flex: none;
    background: #0099d5;
    border: 2px solid #0063a6;
    width: 4.5rem;
    height: 3.75rem;
    border-top-left-radius: 40% 30%;
    border-top-right-radius: 40% 30%;
    border-bottom-right-radius: 50% 70%;
    border-bottom-left-radius: 50% 70%;
    box-shadow: inset 0 0.25rem rgba(255, 255, 255, 0.25), inset 0 -0.5rem rgba(0, 0, 0, 0.25), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.body {
    transform: translateX(-50%);
    position: absolute;
    bottom: 1rem;
    z-index: -1;
    left: 50%;
    flex: none;
    background: #0099d5;
    border: 2px solid #0063a6;
    width: 7rem;
    height: 2rem;
    border-top-right-radius: 50% 100%;
    border-top-left-radius: 50% 100%;
}

.eyes {
    display: flex;
    position: absolute;
    width: 100%;
    top: -20%;
    left: 0;
    right: 0;
    justify-content: center;
    z-index: 1;
}

.eye {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: #fff;
    border-radius: 100%;
    position: relative;
    border: 2px solid #b4b7bf;
    box-shadow: inset 0 -0.25rem rgba(0, 0, 0, 0.125);
    transition: all 200ms linear;
    transform: rotate(0deg);
    animation-fill-mode: forwards;
}
.eye:before {
    content: "";
    display: block;
    position: relative;
    width: 40%;
    height: 40%;
    background: #010101;
    border-radius: 100%;
}

.eye.left {
    margin-right: -2px;
}
.eye.left:before {
    left: 2px;
    top: 2px;
}

.eye.right {
    margin-left: -2px;
    margin-top: 1px;
}
.eye.right:before {
    left: -2px;
    top: -2px;
    width: 45%;
    height: 45%;
}

.mouth {
    position: absolute;
    bottom: 12%;
    left: 10%;
    width: 80%;
    height: 60%;
    background: #011832;
    border-top-left-radius: 10%;
    border-top-right-radius: 10%;
    border-bottom-right-radius: 50% 100%;
    border-bottom-left-radius: 50% 100%;
    box-shadow: 0 0.25rem rgba(255, 255, 255, 0.25);
    transform-origin: top center;
}
.mouth:before {
    content: "";
    display: block;
    left: -0.25rem;
    right: -0.25rem;
    height: 1rem;
    position: absolute;
    bottom: 80%;
    background: #0099d5;
    border: 2px solid #0063a6;
    border-radius: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
}

@keyframes eat-cookie {
    50% {
        left: calc( var(--variance) * -1rem);
    }
    25%, 75% {
        left: calc( var(--variance) * 1rem);
    }
    100% {
        left: 0;
        transform: rotate(540deg) translateY(0) scale(0.8);
    }
}
@keyframes sugar-tremors {
    33.33% {
        transform: rotate(5deg);
    }
    66.66% {
        transform: rotate(-8deg);
    }
}
@keyframes eye-convulsions {
    100% {
        transform: rotate(-360deg);
    }
}
@keyframes monstrous-chewing {
    50% {
        transform: rotateX(80deg) scaleY(0) scaleX(0.9) rotate(5deg);
    }
}
@keyframes dismissing-banner {
    50% {
        transform: translateY(-0.5rem);
    }
    100% {
        transform: translateY(200%);
    }
}














/* how we work */

.how-we-work {
    background: #158bd126;
    padding-bottom: 260px;
}

/*feature css starts*/
.timeline__cover{

    padding: 100px 0;
    color: #ffffff;
}
.timeline__cover .timeline__title{
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}

.timeline__cover .timeline__title p{
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    color: #959595;
}

.timeline__cover .timeline{
    padding-top: 64px;
}
.timeline__cover .timeline ul{
    padding-top: 100px;
}
.timeline__cover .timeline ul li {
    background: #2eb1b161;
    position: relative;
    margin: 0 auto;
    width: 2px;
    margin-bottom: 48px;
    list-style-type: none;
}

.timeline__cover .timeline ul li:last-child {
    padding-bottom: 7px;
    width: 0;
    height: 0;
}

.timeline__cover .timeline ul li:before {
    content: '';
    background: #4addfff7;
    position: absolute;
    left: 50%;
    top: -32px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 16px;
    height: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.timeline__cover .timeline ul li .hidden {
    opacity: 0;
}

.timeline__cover .timeline ul li .content {
    position: relative;
    top: -83px;
    width: 289px;
}

.timeline__cover .timeline ul li .content .badge{
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000614;
    display: inline-block;
    padding: 6px 12px;
    background: #12b1e2c2;
    border-radius: 1000px;
}

.timeline__cover .timeline ul li .content h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #4addfff7;
    margin: 16px 0 8px;
    margin-bottom: 20px;
}



.timeline__cover .timeline ul li .content p{
    color: #efefef;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content {
    left: 70px;
}

.timeline__cover .timeline ul li:nth-child(odd) .content:before {
    left: -38px;
}

.timeline__cover .timeline ul li:nth-child(even) .content {
    left: calc(-289px - 70px);
}

.timeline__cover .timeline ul li:nth-child(even) .content:before {
    right: -38px;
}

/* Media Queries */
@media screen and (max-width: 1020px) {
    .timeline__cover .timeline ul li .content {
        width: 41vw;
    }

    .timeline__cover .timeline ul li:nth-child(even) .content {
        left: calc(-41vw - 45px);
    }
}

@media screen and (max-width: 700px) {
    .timeline__cover {
        padding: 32px 0;

    }
    .timeline__cover .timeline__title {
        text-align: left;
    }
    .timeline__cover .timeline {
        padding-top: 32px;
    }
    .timeline__cover .timeline ul li {
        margin-left: 48px !important;
    }
    .timeline__cover .timeline__title h2 {
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 0.08px;
    }
    .timeline__cover .timeline ul li {
        margin-left: 20px;
    }

    .timeline__cover .timeline ul li .content {
        width: calc(100vw - 100px);
        transition: .2s;
    }

    .timeline__cover .timeline ul li .content p {
        min-height: 110px;
    }

    .timeline__cover .timeline ul li:nth-child(even) .content {
        left: 38px;
    }

    .timeline__cover .timeline ul li:nth-child(even) .content:before {
        left: -33px;
    }
    .timeline__cover .timeline ul li:nth-child(odd) .content {
        left: 38px;
    }
}




:root {
    --neutral-lt: rgb(255, 255, 255);
    --neutral-dk: rgb(0, 0, 0);
    --neon-1: rgb(242, 249, 248);
    --neon-1-lt: rgb(209, 255, 250);
    --neon-1-glow: rgba(2, 254, 228, 0.4);

    --sans-serif: "Poppins", san-serif;
}

.headline {
    font-size: clamp(4vw, 3vh, 400px);
    font-weight: 600;
}

.contact-page {
    width: 100vw;
    height: calc(100vh - var(--mud-appbar-height));
    background: url('/img/connect.jpg');
    background-size: cover;
    background-attachment: fixed;

    .mud-container {
        max-width: 100vw;
        width: 100vw;
        padding:0;
    }

    .highlight {
        background-color: #1609089c;
        border-radius: 10px;
        padding: 0 16px;
        color: #fff !important;
    }
}

.contact-container {
    width: 100%;
    height: calc(100vh - var(--mud-appbar-height));
    background: #00000063;



}



.headline-container {
    display: flex;
    min-height: 100vh;
    max-height: 100vh;
    align-content: center;
    justify-content: center;

    p {
        align-content: center;
        font-size: calc(1vw + 1vh + 1.5vmax);
        color: var(--neon-1-lt);
        letter-spacing: 1px;
        line-height: 1;
        margin: 0;
        -webkit-text-stroke: 2px var(--neon-1);
    }
}