:root {
    --white: #ffffff;
    --black: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

html, body {
    height: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

.job-position.open span {
    transform: rotate(180deg);
}

.loadanim.loaded {
    opacity: 1;
    top: 0;
    transition: all 0.6s ease-out;
}

.loadanimrotate {
    transform-origin: bottom right;
}

.loadanimrotate.loaded {
    opacity: 1;
    transform: rotate(-33deg);
    transition: all 0.3s ease-out;
}

.swiper-pagination-bullet {
    background: transparent !important;
    border: 1px solid #000000 !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #000000 !important;
    border: 1px solid #000000 !important;
}

.swiper-pagination {
    bottom: 0px !important;
}

.scrolled {
    background: white;
}

.scrolled .link-active {
    background: #efefef;
}

@keyframes poptop {
    0% {
        top: 0;
    }
    5% {
        top: -80px;
    }
    89.9% {
        top: -80px;
    }
    90% {
        top: -40px;
    }
    100% {
        top: 0;
    }
}

.poptop {
    animation: poptop 4s infinite;
    animation-timing-function: ease-in;
}

@keyframes popleft {
    0% {
        transform: rotate(0deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    89.9% {
        transform: rotate(-45deg);
    }
    90% {
        transform: rotate(-25deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.popleft {
    transform-origin: bottom right;
    animation: popleft 3s infinite;
    animation-timing-function: ease-in;
    animation-delay: 1500ms;
}