@font-face {
    font-family: HelveticaNowDisplay;
    src: url(/fonts/HelveticaNowDisplay-Bold.woff2);
    font-weight: bold;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: url(/fonts/HelveticaNowDisplay-Light.woff2);
    font-weight: 300;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: url(/fonts/HelveticaNowDisplay-Regular.woff2);
    font-weight: 400;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: url(/fonts/HelveticaNowDisplay-Medium.woff2);
    font-weight: 500;
}

@font-face {
    font-family: HelveticaNowDisplay;
    src: url(/fonts/HelveticaNowDisplay-ExtraBold.woff2);
    font-weight: 800;
}

@font-face {
    font-family: Lato;
    src: url(/fonts/Lato-Regular.woff2);
    font-weight: 400;
}

@font-face {
    font-family: Kalam;
    src: url(/fonts/Kalam-Regular.woff2);
    font-weight: 400;
}

@font-face {
    font-family: Lora;
    src: url(/fonts/Lora-Regular.ttf);
    font-weight: 400;
}

@font-face {
    font-family: Lora;
    src: url(/fonts/Lora-Medium.ttf);
    font-weight: 500;
}


html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}



@keyframes rotate {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html, body {
    padding: 0;
}

* {
    box-sizing: border-box;

}

body {
    /* background-image: url(/img/bgtexture.png); */
    background-color: #111111;
    margin: 0;
    /* overflow-x: hidden; */
}

a {
    text-decoration: none;
    color: white;
}

/* canvas {
    position: static;
    float: left;
    clear: both;
    width: 100%;
    z-index: 0;
} */

.grid {
    background-color: #111111;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    width: 75vw;
    margin: 0 auto;
    box-sizing: border-box;

    position: sticky;
    bottom: 0;
}

.grid div {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #fefefe; */
    border-bottom: 1px solid #fefefe;
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;

}

.grid div:nth-child(1) {
    border-left: 1px solid #fefefe;
    border-right: 1px solid #fefefe;

}

.grid div:nth-child(4) {
    border-right: 1px solid #fefefe;
    border-left: 1px solid #fefefe;

}


.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.opento {
    font-family: HelveticaNowDisplay, sans-serif;
    font-weight: 500;
    position: relative;
    color: #111111;
    background-color: #fefefe;
    padding: .4em 1em .4em 1em;
    border-radius: 16px;
}

.dot {
    display: block;
    position: relative;
    background-color: #00ff00;
    height: 12px;
    width: 12px;
    border-radius: 16px;

}

.menuwrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu {
    /* filter: invert(1); */


    --s: 32px;
    /* control the size */
    --c: white;
    /* the color */

    height: var(--s);
    aspect-ratio: 1;
    border: none;
    padding: 0;
    border-inline: calc(var(--s)/2) solid #0000;
    box-sizing: content-box;
    --_g1: linear-gradient(var(--c) 20%, #0000 0 80%, var(--c) 0) no-repeat content-box border-box;
    --_g2: radial-gradient(circle closest-side at 50% 12.5%, var(--c) 95%, #0000) repeat-y content-box border-box;
    background:
        var(--_g2) left var(--_p, 0px) top,
        var(--_g1) left calc(var(--s)/10 + var(--_p, 0px)) top,
        var(--_g2) right var(--_p, 0px) top,
        var(--_g1) right calc(var(--s)/10 + var(--_p, 0px)) top;
    background-size:
        20% 80%,
        40% 100%;
    position: relative;
    clip-path: inset(0 25%);
    -webkit-mask: linear-gradient(90deg, #0000, #000 25% 75%, #0000);
    cursor: pointer;
    transition:
        background-position .3s var(--_s, .3s),
        clip-path 0s var(--_s, .6s);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    vertical-align: middle;
}

.menu:before,
.menu:after {
    content: "";
    position: absolute;
    border-radius: var(--s);
    inset: 40% 0;
    background: var(--c);
    transition: transform .3s calc(.3s - var(--_s, .3s));
}

.menu:checked {
    clip-path: inset(0);
    --_p: calc(-1*var(--s));
    --_s: 0s;
}

.menu:checked:before {
    transform: rotate(45deg);
}

.menu:checked:after {
    transform: rotate(-45deg);
}

.menu:focus-visible {
    clip-path: none;
    -webkit-mask: none;
    border: none;
    outline: 2px solid var(--c);
    outline-offset: 5px;
}



.category {
    text-align: center;
    color: white;
    /* background-color: #11111170; */
    /* backdrop-filter: blur(16px); */
    display: grid;
    width: 25%;
    margin: 5em 0 0 0;
}

.kalam {
    font-family: Lora, sans-serif;
    font-weight: 500;
    line-height: 115%;
}

main {
    /* backdrop-filter: blur(16px); */
    display: grid;
    /* grid-template-columns: repeat(4, 25%); */
    /* width: 80vw; */
    margin: 0 auto;
    position: relative;
}

.logo {
    filter: invert(1);
    padding-top: 2em;
    padding-bottom: 1.6em;
}

.hero {
    width: 75vw;
    margin: 10em auto 0em auto;
    height: auto;

    position: sticky;
    top: 0;
}


.gridhero {
    position: sticky;
    top: 8em;

    box-sizing: border-box;
    /* background-color: #111111; */
    border: 1px solid #fefefe;
    /* backdrop-filter: blur(16px); */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    width: 75vw;
    margin: auto;
    /* border-radius: 64px; */
    border-top-left-radius: 0em;
    background-color: #111111;
}

.gridhero div {
    box-sizing: border-box;
    vertical-align: middle;
}

.gridhero div h1 {
    text-align: left;
    color: #fefefe;
    max-width: 700px;
}

.banner {
    font-family: HelveticaNowDisplay;
    font-weight: 300;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    font-size: 39.06px;
    padding: 1em;
    grid-column: 4/5;
    /* background-color: #1e1e1e; */
    color: #fefefe;
    box-sizing: border-box;
    border-left: 1px solid;
}



/* Default font styles for all letters */
.banner span {
    margin: -.1em;
    display: inline-block;
    transition: font-weight 0.3s ease;
    font-weight: 300;
    /* Default font weight for all letters */
}

/* Bold the letters UBA by default */
.banner span:nth-child(8),
/* U */
.banner span:nth-child(9),
/* B */
.banner span:nth-child(10) {
    /* A */
    font-weight: 800;
}

/* When hovering over the entire banner, all letters become font-weight 400 */
.banner:hover span {
    font-weight: 300;
    cursor: default;
}

/* When hovering over a specific letter, make that letter, the previous, and the next bold */
.banner span:hover,
.banner span:hover~span,
.banner span~span:hover {
    font-weight: 900;
}



.gridhero div:nth-child(1) {

    grid-column: 1 / 4;
    margin: 4em;
    align-items: center;


}

.herobuttons {
    display: flex;
    margin: 2em 0em 0em 0em;
    gap: 1em;
}

.herobuttons button {
    border-radius: 64px;
    padding: .5em 1.2em .5em 1.2em;
    font-size: 25px;
    font-family: HelveticaNowDisplay, sans-serif;
    font-weight: 500;
    transition: .3s ease-out;

}

.herobuttons button:hover {
    transform: scale(1.1);
    transition: .3s ease-out;
    filter: invert(1);
}

.herobuttons button:nth-child(1) {
    background-color: #ffffff;
    color: #111111;
    border: 1px solid #fefefe;

}

.herobuttons button:nth-child(2) {
    background-color: #111111;
    color: white;
    border: 1px solid #fefefe;
}

.herobuttons button:nth-child(1):hover {
    border: 1px solid #111111;
}

.gridhero button:nth-child(1) img {
    filter: invert(1);
    margin-left: .3em;
    width: 24px;
    height: auto;
    vertical-align: middle;
    padding-bottom: 2px;
}

.gridhero button:nth-child(2) img {
    margin-left: .3em;
    width: 24px;
    height: auto;
    vertical-align: middle;
    padding-bottom: 2px;
}

.gridhero h1 {
    font-family: HelveticaNowDisplay;
    font-weight: bold;
    font-style: normal;
    font-size: 76.3px;
    line-height: 100%;
    margin: 0;
}

.gridhero h2 {
    margin-top: 0;
    font-family: HelveticaNowDisplay;
    font-weight: 300;
    font-style: normal;
    font-size: 39.06px;
    line-height: 120%;
}

.gridhero img {
    vertical-align: middle;
    width: 72px;
}

#amsterdam-time {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fefefe;
    font-size: 16px;
    font-family: Lato;
}

.location {
    display: grid;
    position: relative;
    padding-top: 4em;
    padding-bottom: 4em;
    margin: auto;

    width: max-content;
    grid-template-columns: repeat(4, 1fr);
    grid-column: 1/5;
    vertical-align: middle;
    align-items: center;
    box-sizing: border-box;
    z-index: 1;
}

.herodesc {
    display: grid;
    width: 75vw;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 4em;
    padding-top: 8em;
    border: 1px solid #fefefe;
    border-bottom: 0px;

    position: relative;
    border-top-left-radius: 0em;
    background-color: #111111;
}

.herodesc h2 {
    text-align: center;
    font-family: HelveticaNowDisplay;
    font-weight: 300;
    grid-column: 1/5;
    line-height: 110%;
    font-size: 48.83px;
    max-width: 960px;
    margin: 0 auto;
    color: #fefefe;

}

.bold {
    font-weight: 600;
}

.location span {
    display: flex;
    gap: .2em;
    align-self: start;
    align-items: center;
    padding: 1em;
    /* position: absolute; */
    right: 0;
    font-family: Lora, sans-serif;
    font-weight: 500;
    grid-column: 2/4;
    font-size: 20px;
    text-align: center;
    background-color: #111111;

    border: 1px solid #fefefe;


    color: #fefefe;
    justify-content: center;
    height: 45px;
    box-sizing: border-box;
    padding-top: 2em;
    padding-bottom: 2em;

}

.location img {
    width: 32px;
    height: 32px;
    filter: invert(1);
}

.amsterdamvector {
    overflow: hidden;
    position: absolute;
    bottom: -15px;
    text-align: center;
    z-index: 0;
    margin-inline: auto;
    left: 0;
    right: 0;
}

.amsterdamvector img {
    width: 90%;
    opacity: 20%;
}

.gradient {
    font-size: 76.3px;
    background: -webkit-radial-gradient(#d4fc79, #96e6a1);
    width: 100%;
    height: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rotate {
    animation-name: rotate;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.bedrijven {
    width: 75vw;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: white;
    box-sizing: border-box;
    margin-bottom: 0;
}

div.marquee {
    width: 100vw;
    height: 125px;
    max-width: 100%;
    overflow-x: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.50);
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
    vertical-align: middle;
    position: relative;

}

.marqueewrapper {
    background-color: #F8F8F8;
    width: 75vw;
    margin: 0 auto;
    height: 100%;
    vertical-align: middle;
}

.marqueewrapper div.marquee>p {
    font-size: 39.06px;
    font-family: HelveticaNowDisplay;
    font-weight: 300;
    color: #111111;

    vertical-align: middle;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 32s linear infinite;
}

.marqueewrapper div>p>img {
    padding-left: 1em;
    padding-right: 1em;
    vertical-align: baseline;
    height: 32px;
}

.project1, .project2 {
    position: relative;
    background-color: #111111;
    grid-column: 1 / 3;
    height: 40em;
    width: 37.5vw;
    border: 1px solid #fefefe;
    border-bottom: 0;
}

.project1 {
    border-top: 0;
}

.project1 a.projectwrapper {
    border-right: 1px solid #fefefe;
    border-bottom: 1px solid #fefefe;
    z-index: 2;
    background-size: cover;
    background-position: center;
    background-image: url(/img/EurekaMockup1.png);
}

.project2 a.projectwrapper {
    border-right: 1px solid #fefefe;

    background-size: cover;
    background-position: center;
    background-image: url(/img/VanleeuwenMockup.png);
}

.project2 {
    margin-top: -32em;

    grid-column: 3 / 5;
    border-left: 0px;

}

.project1 span, .project2 span, .servicewrapper span {
    color: #fefefe;

    font-family: Lato, sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.project1 h3, .project2 h3, .servicewrapper h3 {
    font-size: 39.06px;
    font-family: HelveticaNowDisplay, sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
}

a.projectwrapper {
    position: relative;
    height: 40em;
    width: 37.5vw;
    gap: 0;
    box-sizing: border-box;
    display: grid;
    transition: 2s ease;
}

a.projectwrapper h3 {
    color: #fefefe;
}

div.bottominfo {
    position: relative;
    bottom: 0;
    padding: 2em;
    width: 37.5vw;
    height: 22%;
    border: 1px solid #fefefe;
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin-left: -1px;
    margin-top: -1px;
}

div.bottominfo:last-child {
    border-bottom: 0px;
}

.scratch, .scratch2 {
    height: 8em;
    grid-column: 3/5;
    background-image: url(/img/scratchtexture.svg);
    background-size: cover;
    border-right: 1px solid #fefefe;
}

.scratch2 {
    border-top: 1px solid #fefefe;

    border-bottom: 0;
    border-left: 1px solid #fefefe;
    grid-column: 1/3;
}

.gificon {
    /* background-color: white; */
    filter: invert(1);
    width: 48px;
    position: absolute;
    right: 2em;
    top: 2em;
    transition: .5s ease;
    padding: .5em;
    border-radius: 8px;
    border: 1px solid #111111;
    box-sizing: border-box;
    background-color: white;

}

.gificon:hover {
    width: 64px;
}

.servicewrapper:hover .gificon {
    width: 64px;
    transition: .3s ease;
}

ul {
    margin-bottom: 0px;
    margin-top: 8px;
    padding-left: 0;
    list-style: none;
    list-style-type: none;
}

li {
    font-family: HelveticaNowDisplay, sans-serif;
    font-weight: 500;
    display: inline-block;
    padding: 0.5em 1em 0.5em 1em;
    border-radius: 32px;
    color: #111111;
    background-color: #fefefe;
}

.titleproject {
    background-color: #111111;
    grid-column: 1 / 5;
    border: 1px solid #fefefe;
    border-bottom: 1px solid #fefefe;
    /* border-top: 0; */
}

.titleproject h2 {
    text-align: center;
    color: white;
    font-size: 61.04px;
    font-family: Lora, sans-serif;
    font-weight: 400;
}

.width75, .proceswrapper {

    margin: auto;
    width: 75vw;
    position: sticky;
    top: 5px;
    height: 200vh;
}




.width75 h2 {
    margin: 0;
    padding: 1em;
}

/* .projectpreview {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: linear-gradient(188deg, rgba(83, 83, 83, 0.40) 6.09%, rgba(191, 191, 191, 0.40) 39.9%, rgba(255, 255, 255, 0.40) 93.91%);
    margin: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    display: flex;
    flex-grow: 1; 
} */

.outline {
    background-color: #ffffff;
    grid-column: 3/5;
    border: 1px solid rgba(0, 0, 0, 0.50);
    box-sizing: border-box;
    display: flex;
}

.emptystateicon {
    width: 128px;
    height: 100%;
    margin: 0 auto;
}

.work {
    position: relative;
    height: 100%;
    /* background-color: #F8F8F8; */
    /* backdrop-filter: blur(16px); */

}

.plusbutton {
    position: absolute;
    right: 1em;
    top: 2.2em;
}

.services {
    color: #111111;
    display: grid;
    position: relative;

    box-sizing: border-box;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1600px;
    width: 75vw;
    height: max-content;
    margin: 0 auto;

}

.services .titleproject {
    background-color: #111111;
    border-top: 1px solid #fefefe;
}

.service {
    background-color: #111111;
    border: 1px solid #fefefe;

    position: relative;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;

    grid-column: 1/5;
    row-gap: 2em;
    column-gap: 2em;
    padding: 1em;
    width: 100%;
    margin: auto;
}

.servicewrapper {
    flex-grow: 1;

    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    /* border: 1px solid rgba(0, 0, 0, 0.50); */
    padding: 2em;
    /* min-height: 250px; */
    height: 320px;
    max-height: 360px;
    width: 100%;
    transform-origin: center;
}



span.linever {
    display: flex;
    justify-self: center;
    box-sizing: border-box;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #fefefe;
}

span.linehor {
    display: flex;
    align-self: center;
    justify-self: center;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fefefe;
}

.servicewrapper h3 {
    width: 75%;
    color: #fefefe;
}

.servicewrapper p {
    position: absolute;
    font-family: Lato, sans-serif;
    font-size: 16px;
    line-height: 130%;
    align-items: end;
    vertical-align: bottom;
    max-width: 400px;
    width: 80%;
    bottom: 1em;
    color: #fefefe;
}

.servicewrapper:nth-child(1), .servicewrapper:nth-child(3) {
    grid-column: 1/3;
}

.servicewrapper:nth-child(2), .servicewrapper:nth-child(4) {
    grid-column: 3/5;
}

.sidescroll {
    position: relative;
    box-sizing: border-box;
    margin: auto;
    /* margin-left: -8px; */
    overflow-x: scroll;
    scrollbar-width: none;

    /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory;
    /* Snap scrolling behavior */
    /* width: 100vw; */
    /* Full viewport width */
    height: 100%;
    /* Full viewport height */
    scroll-behavior: smooth;
    /* Smooth scrolling */
}

.sidescroll::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Edge */
}

.sidescrollsection {
    /* display: flex; */
    /* Flexbox layout for horizontal alignment */
    flex-direction: row;
    /* Make sections align horizontally */
    /* width: 200vw; */
    /* Each section will take up full screen width */
    /* height: 100%; */
    /* Full height for the sections */
    margin: auto;
}

section.studiouba {
    display: flex;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 75vw;
    max-width: 1600px;
    margin: auto;
    color: white;
    font-family: HelveticaNowDisplay, sans-serif;
    font-weight: 800;
    box-sizing: border-box;
    padding-bottom: 20em;
}

section.studiouba div.uba>span {
    font-size: 76.3px;
    letter-spacing: .02em;
    padding-left: 16px;
    padding-right: 16px;
    height: 1.3em;
    width: 100%;
    /* border: 1px solid #fefefe; */
    border-left: 0;
    transform: translateX(100%);
    /* Start off-screen to the right */
}

section.studiouba div.uba {
    height: 40em;
    border: 1px solid #fefefe;
    border-left: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 50%;
    /* Prevent text from being visible outside */
    padding-top: 11em;
    padding-left: 1em;

}

section.studiouba p {
    font-family: HelveticaNowDisplay;
    font-weight: 400;
    font-size: 32.06px;
    margin: 0;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.50);

}

.circledisplay {
    display: flex;
    width: 50%;
    /* display: grid;
    grid-column: 1/5; */
    border: 1px solid #fefefe;
    border-right: 0;
    height: 40em;
}

span.logotext {
    font-size: 32.06px;
    font-weight: 800;
}

div.logotitle {
    background-color: rgba(0, 0, 0, 0.75);
    display: inline-block;
    margin: 0 auto;
}

div.mockups {
    border-left: 1px solid #fefefe;
    border-right: 1px solid #fefefe;
    border-top: 1px solid #fefefe;

    background-color: #ffffff;
    width: 75vw;
    max-height: 360px;
    box-sizing: border-box;

    position: relative;
    overflow: hidden;
    margin: auto;
}

div.mockup-track {
    display: flex;
    animation: marquee 64s linear infinite;
    width: calc(400px * 18);

}

div.mockups img {
    width: 360px;
    max-width: 50%;
}

section.form {
    box-sizing: border-box;
    position: relative;
    color: #111111;
    width: 75vw;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

}

section.form h3 {
    color: #fefefe;
    padding-bottom: 1em;
    font-family: HelveticaNowDisplay, sans-serif;
    font-size: 31.06px;
    text-align: left;

    margin: 0;
    flex-basis: 100%;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.50); */

}

.selectservice-form {
    /* background: #ffffff; */
    /* border: 1px solid #fefefe; */
    /* border-radius: 16px; */
    padding: 2em;
    grid-column: 1/5;

    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.selectservice-form label {
    color: #fefefe;
    font-family: HelveticaNowDisplay, sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.form-group input {
    height: 32px;
    width: 32px;
    background-color: #111111;
}

form.service-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 2em;
    grid-column: 1/5;
    grid-row: 2;
    box-sizing: border-box;
    background-color: #111111;
    border: 1px solid #fefefe;

}

div.form-group {
    color: #fefefe;
    display: flex;
    flex-direction: row;
    gap: .5em;
    align-items: center;
    flex-basis: 50%;
    padding-bottom: 1em;
}

.forminfo {
    border-radius: 16px;
    grid-column: 1/5;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    box-sizing: border-box;
    justify-content: left;
    column-gap: 2em;
}

.forminfo input {
    margin-top: .5em;
    height: 48px;
    font-size: 20px;
    padding-left: .8em;
    border: 1px solid rgba(0, 0, 0, 0.50);
    background-color: #F8F8F8;

}

.forminfo textarea {
    margin-top: .5em;
    height: 96px;
    font-size: 20px;
    font-family: HelveticaNowDisplay, sans-serif;
    border-radius: 8px;
    padding-left: .5em;
    padding-top: .5em;
    background-color: #F8F8F8;

}

.forminfo>div {
    display: flex;
    flex-direction: column;
    padding-bottom: 2em;
    flex-basis: 45%;
    /* max-width: 400px; */
}

.forminfo>div>label {
    font-weight: 500;
}

.selectservice-form .linehor {
    margin: 1em 0em 2em 0em;
    position: relative;

}

input[type="text"], input[type="email"] {
    border-radius: 8px;
}

input[type="checkbox"] {
    accent-color: #f8f8f8;
}

.form .titleproject {
    grid-column: 1/5;
}

form button {
    font-family: HelveticaNowDisplay, sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #111111;
    padding: .4em 0 .4em 0;
    height: 4em;
    width: 16em;
    margin: auto;
    border-radius: 128px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.50);

    transition: .5s ease;

}

form button:hover {
    color: white;
    border: 1px solid #fefefe;
    background-color: #111111;
    transition: .5s ease;


}

form button>img {
    height: 32px;
    width: 32px;
    vertical-align: middle;
    filter: invert(1);

    transition: .5s ease;
    margin-bottom: 8px;
    margin-right: 4px;
    transform-origin: center;
}

form button:hover img {
    rotate: 90deg;
    transition: .5s ease;
    filter: invert(0);
    mix-blend-mode: screen;
}

.bglines {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 75vw;
    height: 100vh;
    z-index: -1;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.bglines span {
    height: 100%;
    width: 1px;
    background-color: #fefefe;
    opacity: 0.2;
}

.bglines span:nth-child(1) {
    grid-row: 1;
    grid-column: 1/5;
}

.bglines span:nth-child(2) {
    grid-row: 1;

    grid-column: 2/5;
}

.bglines span:nth-child(3) {
    grid-row: 1;

    grid-column: 3/5;
}

.bglines span:nth-child(4) {
    grid-row: 1;

    grid-column: 4/5;
}

.bglines span:nth-child(5) {
    grid-row: 1;

    grid-column: 5/5;
}

.pie-chart {
    overflow: visible;
    width: 300px;
    /* Or a specific size */
    height: auto;
    /* Maintain aspect ratio */
}


.pie-container {
    display: flex;
    position: relative;
    width: 300px;
    height: 300px;
    margin: 10em auto;
    margin-left: 24em;
}

.pie-chart>path:nth-child(1) {
    transform: translate(-50px, -50px);
    /* No initial translation */
}

.pie-chart>path:nth-child(2) {
    transform: translate(145px, 0px);
    /* Initial right displacement */
}

.pie-chart>path:nth-child(3) {
    transform: translate(20px, 145px);
    /* Initial diagonal displacement */
}