@charset "UTF-8"; * {
    box-sizing: border-box;
}

/* OVCAK*/
.intro-slider .slider__track, .intro-slider .slider__slide {
}

html {
    box-sizing: border-box;
    min-height: 100vh;
    background-color: #fff;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    text-decoration-thickness: 1px;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    html {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    html {
        font-size: 20px;
    }
}

html.no-animation {
    scroll-behavior: inherit;
}

html.is-transitioning, html.is-transitioning * {
    cursor: progress;
    pointer-events: none;
}

*::selection {
    background: #d10a11;
    color: #fff;
}

.sticky .col-sm {
    flex-basis: 100%;
}

.supercontainer {
    background: #fff url('../img/logo_opacity.svg') no-repeat;
    background-size: auto 160px;
    background-position: 50% 50%;
    min-height: 100vh;
    background-attachment: fixed;
}

html.nav--open main {
    cursor: pointer;
    filter: blur(4px);
}

.supercontainer:after {
    content: '';
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transition: .2s background linear;
}

html.nav--open .supercontainer:after {
    background: rgba(255,255,255,0.6);
}

[data-ajax="container"] {
    position: relative;
    width: 100%;
}

.fade-leave-active {
    transition: opacity 0.25s ease;
}

.fade-enter-active {
    transition: opacity 0.75s ease;
}

.fade-leave {
    opacity: 1;
}

.fade-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-leave-to {
    opacity: 0;
}

.fade-enter-to {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll-container] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    background: #fff;
}

mark {
    background: rgba(255, 174, 0, 0.4);
    box-shadow: 0 0 0 0.1em rgb(255 174 0 / 40%);
}

body {
    height: 100%;
    overflow: visible !important;
    background: #ffffff;
}

flex {
    box-sizing: inherit;
}

strong, b {
    font-weight: 500;
}

figure {
    margin: 0;
}

.has-text-color strong {
    color: inherit;
}

.has-white-color {
    color: #fff;
}

.has-black-color {
    color: #373636;
}

.has-gold-color {
    color: #d10a11;
}

.has-gold-color > svg {
    fill: #d10a11;
}

a:hover > svg.icon-info {
    fill: #373636;
}

.has-white-background-color {
    background: #fff;
}

.has-black-background-color {
    background: #373636;
}

.has-gold-background-color {
    background: #d10a11;
}

a, button {
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    border: 0;
    background: transparent;
    padding: 0;
    text-decoration: none;
}

a:hover {
    color: #d10a11;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.current-lang a {
    color: #d10a11;
}

.link-has-icon > svg, .text-has-icon > svg {
    margin-right: .25em;
}

.link-has-icon-right > svg, .text-has-icon-right > svg {
    margin-right: 0;
    margin-left: .25em
}

.link-has-black-color {
    color: #373636;
}

.link-has-black-color:hover {
    color: #d10a11;
}

a > svg, button > svg, a > svg.lazyloaded, button > svg.lazyloaded {
    transition: all 0.3s ease-in-out;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 6px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.video-container embed, .video-container iframe, .video-container object, .video-container video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

img:not([src]) {
    content: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

hr {
    clear: both;
    margin: 4rem auto;
    width: calc( 100% - 4rem );
    border: 0;
    border-bottom: 1px solid #dcdcdc;
    max-width: none !important;
    padding: 0 !important;
}

.btn-with-double-link {
    position: relative;
    display: inline-flex;
}

.btn-with-double-link a:first-of-type {
    padding-right: 3rem;
}

.btn-with-double-link a:last-of-type {
    position: absolute;
    right: .5rem;
    top: 50%;
    transform: translate(-50%,-50%);
}

.btn-groups {
    display: grid;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 3rem 0;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 1rem 2.5rem 1rem 2.5rem !important;
    outline: none;
    border: 0;
    color: #fff;
    text-align: center;
    font-size: .8rem;
    font-weight: bold;
    line-height: 1.15;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: auto;
    justify-content: center;
    background: #d10a11;
    text-decoration: none;
    word-break: keep-all;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-shape {
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    transition: .3s all linear !important;
}

.btn-shape:hover {
    clip-path: polygon(18px 0%, 100% 0%, calc(100% - 18px) 100%, 0% 100%);
    padding: 1rem 3.26rem 1rem 3.2rem !important;
}

.btn-full {
    width: 100%;
}

.btn[disabled] {
    pointer-events: none;
}

.btn:active, .btn:focus, .btn:hover {
    color: #fff;
    background: #000;
    text-decoration: none;
}

.btn-sm {
    padding: .6rem 1rem .6rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-md {
    padding: .8rem 2rem .8rem 2rem;
    font-size: .8rem;
}

.btn-radius {
    border-radius: 2rem;
}

.btn-white {
    color: inherit;
    background: white;
    border-radius: 2rem;
    box-shadow: 0px 0px 15px 0px rgba(169, 169, 169, 0.5);
    text-transform: none;
    letter-spacing: 0;
}

.btn-white:active, .btn-white:focus, .btn-white:hover, .btn-white.active {
    color: #d10a11;
    background: #fff;
    box-shadow: 0 0 14px 0 rgb(209 10 17 / 50%);
}

.btn-outline {
    background: transparent;
    color: #3c3c3b;
    box-shadow: 0 0 0 1px #3c3c3b inset;
}

.btn-outline--white {
    color: #fff;
    box-shadow: 0 0 0 1px #fff inset;
}

.btn-outline:active, .btn-outline:focus, .btn-outline:hover, .btn-outline.active {
    background: transparent;
    color: #d10a11;
    box-shadow: 0 0 0 1px rgb(209 10 17 / 50%) inset, 0 0 14px 0 rgb(209 10 17 / 50%);
}

svg {
    fill: #d10a11;
    width: 1.25em;
    height: 1.25em;
    display: inline;
    vertical-align: bottom;
    top: -0.05em;
    position: relative;
}

.burger {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    display: flex;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    align-items: center;
    width: 5rem;
    z-index: 1;
    height: 2rem;
}

.burger:hover {
    cursor: pointer
}

.burger .line {
    width: 1.5rem;
    height: 3px;
    background-color: #fff;
    display: block;
    margin: 4px auto;
    transition: all .3s ease-in-out
}

html.nav--open .burger-wrapper {
    -webkit-animation: scale-animation .3s forwards;
    animation: scale-animation .3s forwards
}

.burger-t-c, .burger-t-o {
    transition: .5s all ease-in-out .2s;
    position: absolute;
    top: 50%;
    left: 2.2rem;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    font-size: .6rem;
    color: #fff;
    transform: translateY(-50%) translateX(2px);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
}

html.nav--open .burger-t-o, html:not(.nav--open) .burger-t-c {
    opacity: 1;
    transform: translateY(-50%) translateX(-2px);
}

html.nav--open .burger .line {
    transition-delay: .2s
}

html.nav--open .burger .line:nth-child(2) {
    opacity: 0
}

html.nav--open .burger .line:first-child {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg)
}

html.nav--open .burger .line:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg)
}

.main-menu {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
}

.main-menu-lang {
    color: #fff;
    text-transform: uppercase;
    font-size: .7rem;
    padding: .5rem 1.8rem;
    margin-top: 2rem;
}

.main-menu-lang.lang li:not(:last-child):after {
    opacity: .8
}

.main-menu-lang a {
    color: #fff;
}

.main-menu-lang .current-lang a {
    text-decoration: underline;
}

.main-menu-content {
    position: absolute;
    left: -4rem;
    background: #d10a11;
    height: 45rem;
    padding: 5rem 0;
    transform: skewX(-11deg) translateX(-3rem);
    transition: .3s all ease-in-out;
    min-width: 200px;
}

.main-menu-content li {
    transform: skewX(20deg) translateX(0);
    opacity: 0;
    transition: .3s all ease-in-out;
}

html.nav--open .main-menu-content {
    left: 0;
    transform: skewX(0deg) translateX(0);
}

html.nav--open .main-menu-content li {
    transform: skewX(0deg) translateX(0);
    opacity: 1;
}

@-webkit-keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.arrow {
    position: fixed;
    right: 1.5rem;
    bottom: 4rem;
    z-index: 999;
    display: flex;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: #d10a11;
    text-align: center;
    opacity: 0;
    pointer-events: none;
}

.arrow.visible {
    opacity: 1;
    pointer-events: all;
}

.arrow svg {
    width: 1rem;
    height: 1rem;
    fill: #fff;
    margin: 0 auto;
}

.arrow:hover {
    transform: translateY(-10px);
}

@media (max-width: 958px) {
    .arrow {
        display: none !important;
    }
}

.header {
    background: #fff;
    padding: .5rem 0 .5rem 8.5rem;
    transition: 0.3s all ease-in-out;
    white-space: nowrap;
    top: 0;
    position: sticky;
    left: 0;
    right: 0;
    z-index: 998;
    box-shadow: 0px 7px 10px rgba(0,0,0,0);
}

@media (max-width: 767px) {
    .header {
        overflow: hidden;
    }
    
    .main-menu-content {min-width: inherit;}
main > *:not(.align):not(.alignfull) { padding-left: 1rem;}    
}


.header-wrapper {
    padding-right: 2rem;
}

html.nav--open .header {
    padding-left: 11rem;
    overflow: visible;
}

.scrolled .header, body:not(.home) .header {
    box-shadow: 0px 7px 10px rgba(0,0,0,.05);
}

.shine:before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.1)));
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.1)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    -o-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.loading-placeholder.lazycomplete.shine {
    overflow: hidden;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@-moz-keyframes shine {
    100% {
        left: 125%;
    }
}

@-o-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

a.shine:hover:before, a:hover .shine:before {
    -webkit-animation: 0.75s shine;
    -moz-animation: 0.75s shine;
    -o-animation: 0.75s shine;
    animation: 0.75s shine;
}

.loading-placeholder {
    position: relative;
    max-width: fit-content;
}

.loading-placeholder.lazycomplete .shine {
    position: relative;
    overflow: hidden;
}

html.js .loading-placeholder img {
    opacity: 0;
    transition: opacity 2s ease;
}

html.js .loading-placeholder.lazycomplete img {
    opacity: 1;
}

.radius {
    border-radius: 50%;
    overflow: hidden;
}

.loading-placeholder:not(.lazycomplete) {
    position: relative;
    background-color: #f5f7f9;
}

.loading-placeholder {
    background: transparent !important;
}

html.js .loading-placeholder:not(.placeholder):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f5f7f9;
    background-image: url("data:image/gif;base64,R0lGODlh3AEBANU+AO3v8ezu8unr7+3v8+vt7uzu8Pf39+3v8uzu8evs8Ovt7+7w9Pf3+fb4+evs8/Dy9PH09fb29vP19vHz9Ors8PL09u/y8+rr8Ovs8u7w8+zt8uvt8fHx8e3v8Pj4+Ozu7+nr7vb1+O3t7fPz9fDw8PHx8+ns7evt8uvr7evr6+rs7fLy8u7t8Ojq7u/u8ezu8/X3+O3v7+zt8O3t7+zs7vb4+u7w8vDz9O/x8/T2+PL09evs8fP19/X3+f///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh/wtYTVAgRGF0YVhNUDw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUIzNjg0RkRDRTRCMTFFN0JBQTg5RkI0MDkyNUYwQkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUIzNjg0RkVDRTRCMTFFN0JBQTg5RkI0MDkyNUYwQkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QjM2ODRGQkNFNEIxMUU3QkFBODlGQjQwOTI1RjBCQiIg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");
    background-repeat: repeat-y;
    background-size: 100% 1px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}

html.js .loading-placeholder:not(.lazycomplete) img {
}

html.js .loading-placeholder.lazycomplete:not(.placeholder):after {
    opacity: 0;
}

.map {
    height: 30rem;
}

.map svg {
    z-index: 200;
    width: inherit;
    height: inherit;
}

.map .leaflet-tile-container {
    filter: grayscale(1)
}

.map .btn {
    color: #fff;
}

.map.leaflet-container {
    font: 16px/1.5 "Barlow"
}

footer {
    background: #000 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='61' height='226'%3E%3Cpath fill='%23D10A11' fill-rule='evenodd' d='m0 0 60.832.59L.442 225.642l-.442.001V0Z'/%3E%3C/svg%3E") no-repeat;
    margin-top: auto;
    padding: 4rem 0 2rem 5rem;
    color: #fff;
    font-size: .8rem;
}

.footer .alignwide {
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-slogan {
    max-width: 20rem;
}

.footer-flex {
    display: flex;
    flex-direction: column;
}

.footer-menu-secondary, .footer-copy {
    margin-top: auto;
}

.footer-menu-secondary-ul {
    flex-wrap: wrap;
}

.footer-copy {
    padding-top: 2rem;
}

.footer-menu-secondary-ul li:not(:last-child):after {
    content: '/';
    margin: 0 .5em;
}

.footer-title {
    color: #9f9f9f;
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    margin-bottom: 2rem;
}

footer p {
    margin: 2rem 0 0 0;
}

footer a {
    color: #fff;
}

main {
    overflow: hidden;
    will-change: blur;
    transition: .8s filter linear;
}


@media (min-width: 768px) {
    body:not(.home) main {
        padding-left: 2rem;
    }
}

@media (min-width: 1200px) {
    body:not(.home) main {
        padding-left: 0rem;
    }
}

main, main > * {
    position: relative;
}

.form-info:not(:empty) {
    padding: 2rem 0;
    font-size: 1.2rem;
}

.main-menu-item a {
    display: inline-block;
    padding: .5rem 1.8rem;
    font-size: .9rem;
    width: 100%;
    white-space: nowrap;
    text-align: left;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.main-menu-item a:after {
    content: '';
    bottom: .4rem;
    left: 1.8rem;
    width: 0;
    height: 1px;
    position: absolute;
    background: #fff;
    transition: .2s all ease-in-out;
}

.main-menu-item a:hover:after, .main-menu-content .current a:after {
    width: 3rem;
}

.slider--draggable {
    cursor: url('../img/cursor.png?v2') 0 0, -webkit-grab;
    cursor: url('../img/cursor.png?v2') 0 0, grab;
    cursor: -webkit-image-set(url('../img/cursor.png?v2') 1x, url('../img/cursor@2x.png?v2') 2x) 0 0, -webkit-grab;
    cursor: -webkit-image-set(url('../img/cursor.png?v2') 1x, url('../img/cursor@2x.png?v2') 2x) 0 0, grab;
}

.slider--draggable-dark {
    cursor: url('../img/cursor_dark.png?v2') 0 0, -webkit-grab;
    cursor: url('../img/cursor_dark.png?v2') 0 0, grab;
    cursor: -webkit-image-set(url('../img/cursor_dark.png?v2') 1x, url('../img/cursor_dark@2x.png?v2') 2x) 0 0, -webkit-grab;
    cursor: -webkit-image-set(url('../img/cursor_dark.png?v2') 1x, url('../img/cursor_dark@2x.png?v2') 2x) 0 0, grab;
}

.header-logo img {
    max-width: 12rem;
    margin-right: 3vw;
}

.header-logo {
    display: flex;
    align-items: center;
    font-style: italic;
    font-size: .8rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.header-logo a {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
}

.header-logo a:hover {
    color: inherit;
}

@media (max-width: 680px) {
    .header-logo a {
        max-height: 48px;
        flex-wrap: nowrap;
    }
}

.header-right {
    margin-left: auto;
    font-size: .8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.header-lang {
    margin-left: 2rem;
    display: flex;
}

.lang {
    display: flex;
}

.lang li:not(:last-child):after {
    content: '/';
    margin: 0 .5rem;
    opacity: .2;
}

.header-phone svg {
    fill: #d10a11;
}

@media (max-width: 680px) {
    .header-right {
        display: none;
    }
}

.intro {
    display: flex;
    flex-direction: column;
    background: lightgrey;
}

.intro, .intro .slider__slide {
    min-height: 80vh;
}

@media (min-height: 1200px) {
    .intro, .intro .slider__slide {
        min-height: 48rem;
    }
}

.intro-slider-wrapper {
    display: flex;
    align-items: center;
}

.intro-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #4a4a4a;
}

@keyframes blur {
    0%, 100% {
        -webkit-filter: blur(20px);
        -moz-filter: blur(20px);
        -o-filter: blur(20px);
        -ms-filter: blur(20px);
    }
     25% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
    }
    

    50% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
    }
    
     75% {
        -webkit-filter: blur(0px);
        -moz-filter: blur(0px);
        -o-filter: blur(0px);
        -ms-filter: blur(0px);
    }
}

.intro-slider .slider__track, .intro-slider .slider__slide {
    height: 100%;
    opacity: 60%;
    opacity: 0.6;
    animation: blur 10s ease 0s infinite;
    -webkit-animation: blur 10s ease 0s infinite;
    -moz-animation: blur 10s ease 0s infinite;
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='10');
    background: #000;
}

.intro-anim-text {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.intro-anim-text > div {
    height: 33.333%;
    flex: 1;
    background: url('../img/logo.svg') top left / contain repeat-x;
    width: 99999px;
    opacity: 0.2;
    animation: slide 8000s linear infinite;
}

.intro-anim-text > div:first-child {
    background-position: -1% 0;
}

.intro-anim-text > div:first-child + div {
    animation-direction: reverse;
    margin-left: 100vw;
}

.intro-anim-text > div:last-child {
    background-position: 2% 0;
}

@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-99999px, 0, 0);
    }
}

.intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.intro-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    padding: 4rem 0 4rem 2rem;
    z-index: 1;
    color: #fff;
}

@media (min-width: 480px) {
    .intro-wrapper {
        padding-left: 6rem;
    }
}

@media (min-width: 768px) {
    .intro-wrapper {
        padding-left: 9.5rem;
    }
}

.intro h2 {
    font-size: 3.2rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
    margin: 0 0 1rem 0;
    max-width: 54rem;
}

.intro h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 2rem 0;
    max-width: 46rem;
}

.intro-icons-wrapper {
    z-index: 1;
    padding: 0 2rem;
}

.intro-icons {
    border-top: 1px solid rgba(255,255,255,.2);
    color: #fff;
    z-index: 2;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    /* max-width: 90rem; */
    margin: 0 auto;
}

.has-icon-left {
    padding-left: 2em;
    position: relative;
}

.has-icon-left > svg {
    position: absolute;
    top: .1em;
    left: 0;
    fill: #fff;
}

.intro-icons h2 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.intro-icons p {
    margin: 0.2rem 0;
    font-size: .9rem;
    line-height: 1.1;
}

@media (min-width: 480px) {
    .intro-icons {
        gap: 1.8rem;
    }

    .intro-icons .has-icon-left {
        width: calc( 50% - 1rem );
    }
}

@media (min-width: 768px) {
    .intro-icons {
        padding: 1.8rem;
    }

    .intro-icons .has-icon-left {
        width: calc( 50% - 1.8rem );
    }
}

@media (min-width: 1100px) {
    .intro-icons {
        gap: 1.8rem 1rem;
    }

    .intro-icons .has-icon-left {
        width: calc( 20% - 1rem );
    }
}

.letter {
    display: flex;
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
    color: #d20a11;
    line-height: 1;
    align-items: flex-start;
    margin: 2rem 0;
}

.letter img {
    width: 6.5rem;
    margin-right: 3%;
    position: relative;
    top: .25rem;
    height: 3.4rem;
}

.letter p {
    margin: 0;
}

.block-slider-skew img {
    filter: grayscale(1);
    max-width: 60vw;
    min-width: 30ch;
}

.block-slider-skew .crop-skew {
    clip-path: polygon( 70px 0%, 100% 0%, calc(100% - 70px) 100%, 0% 100%);
    display: block;
}

.block-slider-skew .slider__slide {
    position: relative;
}

.block-slider-skew h3 {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    color: #fff;
    font-style: italic;
    font-weight: bold;
    font-size: 1.5rem;
    background: rgba(0,0,0,.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    text-transform: uppercase;
    opacity: 0.6;
    transition: .5s all ease-in-out;
}

.block-slider-skew .is-visible h3 {
    opacity: 1;
}

@media (min-width: 480px) {
    .block-slider-skew h3 {
        font-size: 2rem;
    }
}

.uptitle {
    font-weight: 300;
    font-size: 1rem;
    display: block;
}

.uptitle + h3 {
    margin: 0;
}

.block-slider-realization-location {
    color: #d10a11;
    font-size: 1.2rem;
    font-weight: 300;
}

.block-slider-realization-excerpt {
    font-size: 1.2rem;
    max-width: 28rem;
    margin: .5rem 0 2rem;
    line-height: 1.2;
}

.block-slider-realization-pad {
    padding: 4rem 0 0 0;
    transform: translateY(-5px);
    transition: .6s all ease-in-out;
    opacity: 0.5;
}

.block-slider-realization .is-active .block-slider-realization-pad {
    transform: translateY(0);
    opacity: 1;
}

.block-slider-realization img, .block-slider-realization .loading-placeholder {
    max-width: 50vw
}

.block-slider-realization .loading-placeholder {
    transform: translateX(-5px);
    transition: 1s all ease-in-out;
}

.block-slider-realization .is-active .loading-placeholder {
    transform: translateX(0)
}

@media (min-width: 768px) {
    .block-slider-realization-pad {
        padding: 10% 0 0 5%;
    }
}

@media (min-width: 959px) {
    .block-slider-realization-pad {
        padding: 15% 0 0 5%;
    }

    .block-slider-realization img, .block-slider-realization .loading-placeholder {
        width: 100%;
        max-width: none;
    }
}

.hp-about h3 {
    text-align: center;
    margin: 0 0 1rem;
}

.hp-about-project {
    background-color: #f2f2f2;
    padding: 4rem 2rem;
}

.hp-about-company {
    background-color: #262626;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.hp-about-company p {
    font-size: .8rem;
    max-width: 20rem;
    margin: 1rem auto 2rem;
}

.hp-about-company-subtitle {
    font-size: 1.2rem;
    font-weight: bold;
    max-width: 20rem;
    margin: 1rem auto;
}

.hp-about img {
    max-width: 36rem;
    margin: 2rem auto 0 auto;
    width: 100%;
}

.career {
    margin: 4rem auto 0 auto;
    max-width: 84rem !important;
}

.career-btn-group {
    display: flex;
    gap: 1rem;
    margin: 1rem 2rem 0 0;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 33rem;
}

@media (min-width: 959px) {
    .career-btn-group {
        justify-content: flex-start;
    }
}

.career p {
    font-size: 0.8rem;
    margin: 0;
    max-width: 21rem;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 0;
}

.logos a {
    width: 50%;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 0 2rem;
    min-width: 10rem;
}

.logos img {
    display: block;
    margin: 0 auto .5rem auto;
}

.logos svg {
    width: 60px;
    height: 60px;
    fill: #373535;
    margin-bottom: .5rem;
}

.logo-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: .2rem;
    white-space: nowrap;
}

.logo-desc {
    font-size: .9rem;
    line-height: 1;
}

.is-style-arrow {
    position: relative;
}

.is-style-arrow:before {
    content: '';
    position: absolute;
    left: 1.5rem;
    width: 2rem;
    top: -3rem;
    height: 10rem;
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='61' height='226'%3E%3Cpath fill='%23D10A11' fill-rule='evenodd' d='m0 0 60.832.59L.442 225.642l-.442.001V0Z'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% auto;
}

.is-style-arrow, .has-left-pad\+ {
    padding-left: 10rem;
}

h2.is-style-arrow {
    padding-left: 7rem !important;
}

.has-left-pad {
    padding-left: 2em;
}

.has-icon-user em {
    font-size: .8rem;
}

main > .block-columns.is-style-arrow, .block-columns.has-left-pad\+ {
    padding-left: 7rem !important;
    margin-bottom: 7rem;
}

main > .block-columns.is-style-arrow:before {
    top: 0;
    left: 4rem;
}

h2.is-style-arrow:before {
    left: 4rem;
}

@media (min-width: 1200px) {
    main > .block-columns.is-style-arrow, .block-columns.has-left-pad\+ {
        padding-left: 12rem !important;
    }

    main > .block-columns.is-style-arrow:before {
        left: 9rem;
    }

    h2.is-style-arrow:before {
        left: 9rem;
    }

    h2.is-style-arrow {
        padding-left: 12rem !important;
    }
}

.block-columns.is-style-arrow {
    padding-left: 4rem;
}

.block-columns.is-style-arrow:before {
    top: 0;
    left: 0;
}

.pagination {
    display: flex;
}

.pagination a, .pagination span {
    padding: .3rem;
    margin: .3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 2.6rem;
    min-height: 2.6rem;
    background: rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.pagination a:hover,.pagination span.current {
    background-color: #d10a11;
    color: #fff;
    font-weight: 800;
    transform: scale(1.1);
}

.realization-item h2 {
    margin-bottom: 0;
}

.realization-item-location {
    color: #d10a11;
    font-weight: 300;
    font-size: .9rem;
}

.realization-item-excerpt {
    margin-bottom: 1rem;
}

.realization-item {
    max-width: 100rem !important;
    width: 96%;
}

.service-item {
    max-width: 83rem !important;
    width: 96%;
    padding-top: 4rem;
}

.timeline {
    position: relative;
    padding: 0 0 1rem 0;
    margin: 0 auto;
    max-width: 65rem;
}

.timeline:before {
    content: "";
    position: absolute;
    height: 100%;
    border: 1px solid #000;
    left: 0;
    top: 0;
}

.timeline:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (min-width: 700px) {
    .timeline {
        padding: 0 0 2rem 0;
    }

    .timeline:before {
        left: calc(50% - 1px);
        right: auto;
    }
}

.timeline-item {
    padding: 0;
    position: relative;
    margin: 1rem 3rem 1rem 2rem;
    clear: both;
}

.timeline-item:after, .timeline-item:before {
    content: "";
    position: absolute;
}

@media screen and (min-width: 700px) {
    .timeline-item {
        width: 47%;
        margin: 0;
    }

    .timeline-item:nth-of-type(2n) {
        float: right;
        margin: 0;
    }

    .timeline-item:nth-of-type(2n):before {
        right: auto;
        left: -10px;
    }
}

.timeline-item--year {
    text-align: center;
    max-width: 4.4rem;
    margin: 0 auto 0 0;
    background-color: #000;
    line-height: 1;
    padding: .8rem;
    border-radius: .8em;
    color: #fff;
    font-size: 1rem;
    transform: translateX(-50%);
}

.timeline-item--ball {
    text-align: center;
    width: .8rem;
    height: .8rem;
    margin: 0 auto 0 0;
    background-color: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    margin: 0 0 4rem -.36rem;
    padding: 0;
}

.timeline-item--year:before {
    display: none;
}

.timeline-b {
    display: flex;
    margin-left: -2.5rem;
}

.timeline-b img {
    width: 5rem;
    margin: 2rem 0;
}

@media screen and (min-width: 700px) {
    .timeline-item--year {
        text-align: center;
        margin: 0 auto;
        transform: none;
    }

    .timeline-item--ball {
        text-align: center;
        margin: 0 auto 4rem auto;
    }

    .timeline-item--year:nth-of-type(2n) {
        float: none;
        margin: 0 auto;
        border-image: none;
    }

    .timeline-item--year:nth-of-type(2n):before {
        display: none;
    }

    .timeline-b {
        justify-content: center;
        margin-left: 0;
    }

    .timeline-b img {
        width: 8rem;
    }
}

.timeline-title {
    margin: 0;
    font-size: 1.5em;
}

.badge {
    padding: 0.375em 1em;
    border-radius: 0.25em;
    font-weight: bold;
    font-size: .7rem;
    border: 1px solid;
    position: relative;
    line-height: 1;
    transition: .3s all ease-in-out;
    display: flex;
    align-items: center;
}

.badge:not(a) {
    cursor: default;
}

.badge-sm {
    padding: 0.35em 0.5em;
    font-size: 0.8125rem;
}

.tags > * {
    margin-right: .5em;
}

.tags a:hover, .badge[role="checkbox"]:hover, .badge[aria-checked="true"] {
    filter: brightness(105%);
}

.tags a.no-background:hover, .badge[role="checkbox"].no-background:hover, .badge[aria-checked="true"].no-background {
    filter: brightness(95%);
}
