/*
  | Pixels (px) | Rems (rem) |
  |-------------|------------|
  | 4px         | 0.25rem    |
  | 8px         | 0.5rem     |
  | 10px        | 0.625rem   |
  | 12px        | 0.75rem    |
  | 14px        | 0.875rem   |
  | 16px        | 1rem       |
  | 18px        | 1.125rem   |
  | 20px        | 1.25rem    |
  | 24px        | 1.5rem     |
  | 28px        | 1.75rem    |
  | 32px        | 2rem       |
  | 36px        | 2.25rem    |
  | 40px        | 2.5rem     |
  | 48px        | 3rem       |
  | 56px        | 3.5rem     |
  | 64px        | 4rem       |
*/


/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,400;0,700;1,700&display=swap');


/* Base styling */
:root {
    --gw-purple: #371B52;
    --gw-purple-80: #604973;
    --gw-orange: #F7941D;
    --gw-orange-80: #F8A95D;
    --gw-light-orange: #ffd4ae;
    --gw-green: #20A763;
    --gw-green-80: #48B985;
    --gw-blue: #0073B3;
    --gw-blue-80: #418FC0;
    --gw-light-blue: #E5F1F7;

    --gw-light: #FFFFFF;
    --gw-light-70: #FFFFFFB2;
    --gw-light-50: #FFFFFF7F;
    --gw-light-10: #FFFFFF1A;

    --gw-dark: #131415;
    --gw-gray: #757575;

    --bs-body-font-family: 'Titillium Web', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-body-font-size: 1.125rem;
    --bs-body-line-height: 160%;
    --bs-body-font-weight: 400;

    --bs-border-width: 2px;
    --bs-border-radius: .5rem;

    --bs-body-color: var(--gw-dark);
    --bs-body-bg: var(--gw-light);
}


/* Global */
.pt-6 {
    padding-top: 6rem !important
}

.py-6 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important
}

.mt-6 {
    margin-top: 6rem !important
}

.my-6 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important
}

@media (min-width: 768px) {

    .pt-6 {
        padding-top:6rem !important
    }

    .py-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }

    .mt-6 {
        margin-top: 6rem !important
    }

    .my-6 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important
    }
}

@media (min-width: 992px) {

    .pt-6 {
        padding-top:6rem !important
    }

    .pt-lg-6 {
        padding-top:6rem !important
    }

    .py-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }

    .py-lg-6 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }

    .pb-lg-6 {
        padding-bottom: 6rem !important
    }
}

[class^="ellipsis-"] {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ellipsis-3 {
    -webkit-line-clamp: 3;
}


/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1;
    color: var(--gw-purple);
}

:is(.bg-purple, .bg-blue, .bg-orange) :is(h1, h2, h3, h4, h5, h6, ol li) {
    color: var(--gw-light);
}

:is(.bg-light, .bg-light-blue) :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gw-purple);
}

h1, .fs-1 {
    font-size: 3.5rem;
    hyphens: auto;
}

h2, .fs-2 {
    font-size: 2rem;
}

h3, .fs-3 {
    font-size: 1.5rem;
}

h4, .fs-4 {
    font-size: 1.25rem;
}

h5, .fs-5 {
    font-size: 1.125rem;
}

@media (min-width: 992px) {

    h1, .fs-1 {
        font-size: 4rem;
    }

    header p {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {

    h1, .fs-1 {
        font-size: 5.75rem;
    }

    header p {
        font-size: 1.5rem;
    }
}

:is(.bg-purple, .bg-blue, .bg-orange) p {
    color: var(--gw-light);
}

:is(.bg-light, .bg-light-blue) p {
    color: var(--gw-dark);
}

p {
    line-height: 1.6;
    font-size: 1.25rem;
}

a {
    color: var(--gw-dark);
    text-decoration-color: var(--gw-orange);
    text-decoration-thickness: 10%;
    text-underline-offset: 19%;
    transition: color 0.3s ease;
}

:is(.bg-purple, .bg-blue, .bg-orange) a:not([class]) {
    color: var(--gw-light);
}

:is(.bg-light, .bg-light-blue) a:not([class]) {
    color: var(--gw-dark);
}

a:not([class]):hover {
    color: var(--gw-orange-80);
}


/* Background colors */
.bg-purple {
    background-color: var(--gw-purple);
}

.bg-light {
    background-color: var(--gw-light);
}

.bg-light-blue {
    background-color: var(--gw-light-blue);
}

.bg-blue {
    background-color: var(--gw-blue);
}

.bg-orange {
    background-color: var(--gw-orange);
}

/* Background image */
.bg-img {
    background-size: inherit;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-img.bg-purple {
    background-image: url(../img/bg-purple.svg);
}

.bg-img.bg-orange {
    background-image: url(../img/bg-orange.svg);
}

.bg-img.bg-blue {
    background-image: url(../img/bg-blue.svg);
}

.bg-img.bg-light-blue {
    background-image: url(../img/bg-light-blue.svg);
}


footer.bg-img.bg-purple,
header.bg-img.bg-purple {
    background-image: url(../img/bg-purple-2.svg);
}


/* Content image */
.content-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .content-img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


/* Text colors */
.text-light {
    color: var(--gw-light);
}

.text-dark {
    color: var(--gw-dark);
}

.text-purple {
    color: var(--gw-purple) !important;
}

.text-orange {
    color: var(--gw-orange);
}

.text-blue {
    color: var(--gw-blue);
}

.text-green {
    color: var(--gw-green);
}

.text-cursive {
    font-weight: 700;
    font-style: italic;
    font-size: 1.25rem;
}


/* Lists */
ul.list,
.function_description ul,
.offer_description ul,
.requirements_description ul,
.client_description ul,
.additional_description ul
{
    font-size: 1.25rem;
    line-height: 1.5;
    list-style: none;
}

ul.list .list-item,
.function_description ul li,
.offer_description ul li,
.requirements_description ul li,
.client_description ul li,
.additional_description ul li
{
    position: relative;
}

ul.list .list-item::before,
.function_description ul li::before,
.offer_description ul li::before,
.requirements_description ul li::before,
.client_description ul li::before,
.additional_description ul li::before
{
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5em;
    width: 10px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.80859' cy='4.80859' r='4.80859' fill='%23371B52'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

ul.list.orange .list-item::before,
.function_description ul li::before
{
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.80859' cy='4.80859' r='4.80859' fill='%23F7941D'/%3E%3C/svg%3E");
}

ul.list.orange .list-item a {
    text-decoration-color: var(--gw-orange);
}

ul.list.green .list-item::before,
.offer_description ul li::before
{
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.80859' cy='4.80859' r='4.80859' fill='%2320A763'/%3E%3C/svg%3E");
}

ul.list.green .list-item a {
    text-decoration-color: var(--gw-green);
}

ul.list.green .list-item a:hover {
    color: var(--gw-green-80);
}

ul.list.blue .list-item::before, ul.list.green ul.list.green .list-item::before,
.requirements_description ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.80859' cy='4.80859' r='4.80859' fill='%230073B3'/%3E%3C/svg%3E");
}

ul.list.blue .list-item a, ul.list.green ul.list.green .list-item a {
    text-decoration-color: var(--gw-blue);
}

ul.list.blue .list-item a:hover, ul.list.green ul.list.green .list-item a:hover {
    color: var(--gw-blue-80);
}

ul.list.blue .list-item::before, ul.list.green ul.list.green .list-item::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.80859' cy='4.80859' r='4.80859' fill='%230073B3'/%3E%3C/svg%3E");
}

ul.list.blue .list-item a, ul.list.green ul.list.green .list-item a {
    text-decoration-color: var(--gw-blue);
}

ul.list.blue .list-item a:hover, ul.list.green ul.list.green .list-item a:hover {
    color: var(--gw-blue-80);
}

ul.list.purple .list-item::before,
ul.list.green ul.list.green ul.list.green .list-item::before {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.80859' cy='4.80859' r='4.80859' fill='%23371B52'/%3E%3C/svg%3E");
}

ul.list.purple .list-item a,
ul.list.green ul.list.green ul.list.green .list-item a {
    text-decoration-color: var(--gw-purple);
}

ul.list.purple .list-item a:hover,
ul.list.green ul.list.green ul.list.green .list-item a:hover {
    color: var(--gw-purple-80);
}

li {
    font-size: 20px;
}

/* Buttons */
.btn {
    border-radius: .25rem;
    min-width: 180px;
    font-weight: 700;
    font-size: 1rem;
    padding: .875rem 2.5rem ;
    transition: all .35s ease-in-out;
}

@media (max-width: 450px) {

    .btn {
        padding: .875rem 1.5rem;
    }
}

.btn-primary {
    --bs-btn-color: var(--gw-light);
    --bs-btn-bg: var(--gw-orange);
    --bs-btn-border-color: var(--gw-orange);
    --bs-btn-hover-color: var(--gw-light);
    --bs-btn-hover-bg: var(--gw-purple);
    --bs-btn-hover-border-color: var(--gw-purple);
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: var(--gw-light);
    --bs-btn-active-bg: var(--gw-purple);
    --bs-btn-active-border-color: var(--gw-purple);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--gw-light);
    --bs-btn-disabled-bg: var(--gw-purple);
    --bs-btn-disabled-border-color: var(--gw-purple);
}

body.vacancy-detail-page nav .btn-primary {
    --bs-btn-color: var(--gw-purple);
    --bs-btn-bg: var(--gw-light);
    --bs-btn-border-color: var(--gw-light);

}

.bg-purple .btn-primary {
    --bs-btn-hover-bg: var(--gw-purple);
    --bs-btn-hover-border-color: var(--gw-orange);
    --bs-btn-active-bg: var(--gw-purple);
    --bs-btn-active-border-color: var(--gw-orange);;
}

.bg-blue .btn-primary {
    --bs-btn-hover-color: var(--gw-purple);
    --bs-btn-hover-bg: var(--gw-light);
    --bs-btn-hover-border-color: var(--gw-light);
    --bs-btn-active-color: var(--gw-purple);
    --bs-btn-active-bg: var(--gw-light);
    --bs-btn-active-border-color: var(--gw-light);
}

.btn-secondary {
    --bs-btn-color: var(--gw-light);
    --bs-btn-bg: var(--gw-purple);
    --bs-btn-border-color: var(--gw-purple);
    --bs-btn-hover-color: var(--gw-purple);
    --bs-btn-hover-bg: var(--gw-light);
    --bs-btn-hover-border-color: var(--gw-light);
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: var(--gw-light);
    --bs-btn-active-bg: var(--gw-light);
    --bs-btn-active-border-color: var(--gw-light);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--gw-light);
    --bs-btn-disabled-bg: var(--gw-light);
    --bs-btn-disabled-border-color: var(--gw-light);
}

.btn-dark {
    --bs-btn-color: var(--gw-light);
    --bs-btn-bg: var(--gw-dark);
    --bs-btn-border-color: var(--gw-dark);
    --bs-btn-hover-color: var(--gw-light);
    --bs-btn-hover-bg:var(--gw-purple);
    --bs-btn-hover-border-color: var(--gw-purple);
    --bs-btn-focus-shadow-rgb: 66, 70, 73;
    --bs-btn-active-color: var(--gw-light);
    --bs-btn-active-bg: var(--gw-purple);
    --bs-btn-active-border-color: var(--gw-purple);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--gw-light);
    --bs-btn-disabled-bg: var(--gw-dark);
    --bs-btn-disabled-border-color: var(--gw-dark);
}

.btn-outline {
    --bs-btn-color: var(--gw-light);
    --bs-btn-border-color: var(--gw-light);
    --bs-btn-hover-color: var(--gw-purple);
    --bs-btn-hover-bg: var(--gw-light);
    --bs-btn-hover-border-color: var(--gw-light);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--gw-purple);
    --bs-btn-active-bg: var(--gw-light);
    --bs-btn-active-border-color: var(--gw-light);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--gw-light);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--gw-light);
    --bs-gradient: none;
}

.btn-login {
    --bs-btn-color: var(--gw-light);
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: var(--gw-orange);
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color:  transparent;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--gw-light);
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--gw-light);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: transparent;

    padding: 0;
    min-width: unset;
    line-height: 1;
}

.mobile-menu-content .btn-login {
    --bs-btn-color: var(--gw-purple);
    --bs-btn-active-color: var(--gw-purple);
    --bs-btn-disabled-color: var(--gw-purple);
    font-size: 1rem;
}

.btn-login:hover svg {
    outline: var(--gw-orange);
}


/* Links */
.link-green, .link-blue {
    color: var(--gw-light);
    font-weight: 700;
    text-decoration-thickness: 12.5%;
    text-underline-offset: 40%;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
    will-change: transform;
}

.link-green {
    text-decoration-color: var(--gw-green);
}

.link-blue {
    text-decoration-color: var(--gw-blue);
}

.link-green:hover, .link-blue:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.link-orange {
    color: var(--gw-dark);
    text-decoration: underline;
    text-decoration-thickness: 10%;
    text-underline-offset: 19%;
    text-decoration-color: var(--gw-orange);
    display: inline-block;
    transition: color 0.3s ease !important;
}

.link-orange:hover {
    color: var(--gw-orange-80) !important;
}

.link-purple {
    color: var(--gw-light);
    text-decoration: underline;
    text-decoration-thickness: 10%;
    text-underline-offset: 19%;
    text-decoration-color: var(--gw-purple);
    text-decoration-skip-ink: all;
    display: inline-block;
    transition: color 0.3s ease !important;
}

.link-purple:hover {
    color: var(--gw-purple);
}

/* Text bubble */
.text-bubble {
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    border: 2px solid var(--gw-light);
    color: var(--gw-light);
    padding: .5rem .75rem;
    line-height: 1;
    display: inline-flex;
}

.text-bubble.blue {
    color: var(--gw-blue);
    border-color: var(--gw-blue);
}

.text-bubble.green {
    color: var(--gw-green);
    border-color: var(--gw-green);
}

.text-bubble.orange {
    color: var(--gw-orange);
    border-color: var(--gw-orange);
}

.bg-img:not(.bg-light-blue) .text-bubble {
    color: var(--gw-light);
}


/* Labels */
.label-wrapper .label {
    margin-bottom: .25rem;
}

.label {
    background-color: var(--gw-light-70);
    border: 2px solid var(--gw-light);
    color: var(--gw-purple);
    padding: .5rem 1.125rem;
    font-weight: 700;
    font-size: .875rem;
    width: fit-content;
}

.label img {
    width: 16px;
    height: 16px;
    margin-right: .5rem;
}


/* Logo Animation Styles */
.logo-animated {
    display: inline-block;
}

.logo-animated svg {
    overflow: visible;
    transition: transform 0.3s ease;
}

/* Bouncing balls animation - uses transform-box for SVG */
@keyframes bounce-ball-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes bounce-ball-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes bounce-ball-3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Gentle fall animation when mouse leaves */
@keyframes ball-fall-down {

    0% {
        transform: translateY(var(--current-y, -10px));
    }
    100% {
        transform: translateY(0);
    }
}

/* Easter egg animations */
@keyframes bounce-off-left {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(-250px, -150px) rotate(-720deg) scale(0.5); opacity: 0; }
}

@keyframes bounce-off-right {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(250px, -180px) rotate(720deg) scale(0.5); opacity: 0; }
}

@keyframes bounce-off-top {
    0% { transform: translate(0, 0) scale(1); opacity: 1; }
    100% { transform: translate(50px, -300px) rotate(360deg) scale(0.5); opacity: 0; }
}

/* Logo shake for easter egg trigger */
@keyframes logo-shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-8px) rotate(-3deg); }
    50% { transform: translateX(8px) rotate(3deg); }
    75% { transform: translateX(-8px) rotate(-3deg); }
}

/* Confetti particles */
.confetti-particle {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

@keyframes confetti-fall {

    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot)) scale(0.3);
        opacity: 0;
    }
}


/* Navbar */
.hamburger-menu {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    z-index: 1002;
}

.hamburger-menu div {
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--gw-light);
    transition: 0.3s ease transform, 0.3s ease opacity, 0.3s ease background-color, 0.3s ease top;
    border-radius: 2px;
    left: 0;
}

.hamburger-menu div:first-child {
    top: 8px;
}

.hamburger-menu div:nth-child(2) {
    top: 18px;
}

.hamburger-menu div:last-child {
    top: 28px;
}

body.menu-open .hamburger-menu div {
    background-color: var(--gw-purple);
}

body.menu-open .hamburger-menu div:first-child {
    top: 18px;
    transform: rotate(45deg);
}

body.menu-open .hamburger-menu div:nth-child(2) {
    opacity: 0;
}

body.menu-open .hamburger-menu div:last-child {
    top: 18px;
    transform: rotate(-45deg);
}

nav {
    position: relative;
    z-index: 1002;
    transition: 0.3s ease all;
}

.logo-main,
.logo-dark {
    transition: 0.3s ease opacity;
}

body.menu-open .logo-main {
    display: none !important;
}

body.menu-open .logo-dark {
    display: block !important;
}

body.menu-open {
    overflow: hidden !important;
    padding-right: var(--scrollbar-width, 0px);
}

.nav-item {
    color: var(--gw-light);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gw-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-item.from-left::after {
    transform-origin: left;
}

.nav-item.from-right::after {
    transform-origin: right;
}

.nav-item:hover::after {
    transform: scaleX(1);
}

.nav-item:not(:hover)::after {
    transform: scaleX(0);
}

.nav-item.active::after {
    transform: scaleX(1) !important;
}

.scrollbar-measure {
    width: 100px;
    height: 100px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: var(--gw-light);
    padding-top: env(safe-area-inset-top);
    height: 100dvh;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s ease opacity;
}

.mobile-menu-overlay.active {
    pointer-events: all;
    opacity: 1;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 1.5rem;
    padding-top: calc(140px + env(safe-area-inset-top));
    transform: translateY(50px);
    opacity: 0;
    transition: 0.4s ease transform, 0.4s ease opacity;
    transition-delay: 0s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.mobile-nav-menu {
    margin-bottom: 0;
}

.mobile-nav-item {
    font-weight: 700;
    font-size: 1.5rem;
}

.mobile-nav-link {
    color: var(--gw-purple);
    text-decoration: none;
    display: inline-block;
    transition: all .35s ease-in-out;
}

.no-touchevents .mobile-nav-item:hover .mobile-nav-link {
    color: var(--gw-orange);
}


/* Vacancy search form */
.vacancy-search-bar {
    background-color: var(--gw-orange);
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .vacancy-search-bar .btn {
        min-width: unset;
    }
}

.vacancy-search-bar .form-control,
.vacancy-search-bar .form-select {
    border-radius: .25rem;
    color: var(--gw-dark);
    font-size: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: var(--bs-border-width) 0 solid transparent;
}

.vacancy-search-bar .form-control:has(:focus, :focus-visible),
.vacancy-search-bar .form-select:has(:focus, :focus-visible) {
    outline: none;
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--gw-orange) 25%, transparent);
}

.vacancy-search-bar .form-control::placeholder,
.vacancy-search-bar .form-select::placeholder {
    color: var(--gw-gray);
    opacity: 1;
}

/* For Firefox */
.vacancy-search-bar .form-control::-moz-placeholder,
.vacancy-search-bar .form-select::-moz-placeholder {
    color: var(--gw-gray);
    opacity: 1;
}

.form-select {
    --bs-select-bg-img: url("data:image/svg+xml,%3Csvg width='26' height='24' viewBox='0 0 26 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.49536 9L12.9907 15L19.486 9' stroke='%23131415' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 26px 24px;
}


/* Warranty slider */
.warranty-slider-wrapper {
    margin: .5rem 0 0;
}

section:has(.warranty-slider) {
    overflow: visible;
}

.warranty-slider {
    width: 100%;
    overflow: visible;
    margin-left: 0;
    cursor: grab;
}

.warranty-slider:active {
    cursor: grabbing;
}

.warranty-slider .swiper-wrapper {
    margin-left: 0;
}

.warranty-slider .swiper-slide {
    width: 325px;
    height: auto;
}

.warranty-slider .swiper-slide p {
    font-size: 1rem;
}

.warranty-slider .swiper-slide .warranty-img {
    width: 150px;
    height: 150px;
    border-radius: 100000px !important;
    object-fit: cover;
}

.warranty-slider .swiper-slide .bg-light {
    height: 450px;
}

.warranty-slider .swiper-slide .bg-light p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
}

@media (max-width: 991px) {

    .warranty-slider .swiper-slide .warranty-img {
        height: 70px;
        width: 70px;
    }
}

.warranty-slider-wrapper .swiper-button-prev-warranty,
.warranty-slider-wrapper .swiper-button-next-warranty {
    border-radius: 4px;
    width: 56px;
    height: 56px;
    position: static;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warranty-slider-wrapper .swiper-button-prev-warranty::after,
.warranty-slider-wrapper .swiper-button-next-warranty::after {
    height: 22px;
    font-size: var(--bs-body-font-size);
    display: inline-block;
    transition: transform 0.3s ease;
}

.warranty-slider-wrapper .swiper-button-prev-warranty:hover::after {
    transform: translateX(-4px);
}

.warranty-slider-wrapper .swiper-button-next-warranty:hover::after {
    transform: translateX(4px);
}

.warranty-slider-wrapper .swiper-button-prev-warranty::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.67773 1.41406L3.82812 7.26367H14.9092V9.26367H3.82812L9.67773 15.1133L8.26367 16.5273L0 8.26367L8.26367 0L9.67773 1.41406Z' fill='%23371B52'/%3E%3C/svg%3E ");
}

.warranty-slider-wrapper .swiper-button-next-warranty::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9102 8.26367L6.64648 16.5273L5.93945 15.8203L5.23145 15.1133L11.082 9.26367H0V7.26367H11.082L5.23145 1.41406L5.93945 0.707031L6.64648 0L14.9102 8.26367Z' fill='%23371B52'/%3E%3C/svg%3E%0A");
}

.warranty-slider-wrapper .swiper-navigation-elements {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.warranty-slider-wrapper .swiper-navigation-elements > div {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {

    section:has(.warranty-slider) {
        overflow: hidden;
    }

    .warranty-slider-wrapper {
        overflow: visible;
        position: relative;
    }

    .warranty-slider {
        overflow: visible;
    }

    .warranty-slider-wrapper::before {
        content: '';
        position: absolute;
        left: -100vw;
        top: 0;
        width: 100vw;
        height: 100%;
        background-color: var(--gw-light);
        z-index: 10;
        pointer-events: none;
    }

    section.bg-purple:has(.warranty-slider) .warranty-slider-wrapper::before {
        background-color: var(--gw-purple);
    }

    section.bg-light-blue:has(.warranty-slider) .warranty-slider-wrapper::before {
        background-color: var(--gw-light-blue);
    }

    .warranty-slider {
        overflow: visible;
    }
}

@media (min-width: 992px) {

    section:has(.warranty-slider) {
        overflow: hidden;
    }

    .warranty-slider {
        overflow: inherit;
        overflow-x: clip;
        --swiper-navigation-top-offset: 120%;
    }

    .warranty-slider-wrapper {
        position: relative;
        left: 0;
        width: 50vw;
        max-width: 100vw;
    }

    .warranty-slider-wrapper .swiper-navigation-elements {
        max-width: none;
        width: 41.66667%;
        justify-content: flex-end;
    }
}


/* Vacancy slider */
.vacancy-slider-wrapper {
    margin: .5rem 0 0;
}

section:has(.vacancy-slider) {
    overflow: visible;
}

.vacancy-slider {
    width: 100%;
    overflow: visible;
    margin-left: 0;
}

.vacancy-slider .swiper-wrapper {
    margin-left: 0;
}

.vacancy-slider .swiper-slide {
    width: 325px;
    height: auto;
    display: flex;
}

.vacancy-slider .swiper-slide .bg-purple {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vacancy-slider .swiper-slide .bg-purple::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background-color: var(--gw-orange);
    border-radius: 100%;
    z-index: 1;
    transform: scale(1);
    transform-origin: center;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.50, 1);
}

.vacancy-slider .swiper-slide:hover .bg-purple::after {
    transform: scale(3.75);
}

@media (min-width: 768px) and (max-width: 991px) {

    .vacancy-slider .swiper-slide:hover .bg-purple::after {
        transform: scale(4.75);
    }
}

.vacancy-slider .swiper-slide .bg-purple > div {
    position: relative;
    z-index: 2;
}

.vacancy-slider-wrapper .swiper-button-prev-vacancy,
.vacancy-slider-wrapper .swiper-button-next-vacancy {
    border-radius: 4px;
    width: 56px;
    height: 56px;
    position: static;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacancy-slider-wrapper .swiper-button-prev-vacancy::after,
.vacancy-slider-wrapper .swiper-button-next-vacancy::after {
    height: 22px;
    font-size: var(--bs-body-font-size);
    display: inline-block;
    transition: transform 0.3s ease;
}

.vacancy-slider-wrapper .swiper-button-prev-vacancy:hover::after {
    transform: translateX(-4px);
}

.vacancy-slider-wrapper .swiper-button-next-vacancy:hover::after {
    transform: translateX(4px);
}

.vacancy-slider-wrapper .swiper-button-prev-vacancy::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.67773 1.41406L3.82812 7.26367H14.9092V9.26367H3.82812L9.67773 15.1133L8.26367 16.5273L0 8.26367L8.26367 0L9.67773 1.41406Z' fill='%23371B52'/%3E%3C/svg%3E ");
}

.vacancy-slider-wrapper .swiper-button-next-vacancy::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9102 8.26367L6.64648 16.5273L5.93945 15.8203L5.23145 15.1133L11.082 9.26367H0V7.26367H11.082L5.23145 1.41406L5.93945 0.707031L6.64648 0L14.9102 8.26367Z' fill='%23371B52'/%3E%3C/svg%3E%0A");
}

.vacancy-slider-wrapper .swiper-navigation-elements {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.vacancy-slider-wrapper .swiper-navigation-elements > div {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {

    section:has(.vacancy-slider) {
        overflow: hidden;
    }

    .vacancy-slider-wrapper {
        overflow: visible;
        position: relative;
    }

    .vacancy-slider {
        overflow: visible;
    }

    .vacancy-slider-wrapper::before {
        content: '';
        position: absolute;
        left: -100vw;
        top: 0;
        width: 100vw;
        height: 100%;
        background-color: var(--gw-light);
        z-index: 10;
        pointer-events: none;
    }

    section.bg-purple:has(.vacancy-slider) .vacancy-slider-wrapper::before {
        background-color: var(--gw-purple);
    }

    section.bg-light-blue:has(.vacancy-slider) .vacancy-slider-wrapper::before {
        background-color: var(--gw-light-blue);
    }

    .vacancy-slider {
        overflow: visible;
    }
}

@media (min-width: 992px) {

    .vacancy-slider {
        overflow: hidden;
    }

    .vacancy-slider .swiper-wrapper {
        align-items: stretch;
    }


    .vacancy-slider .swiper-slide {
        height: auto;
        display: flex;
    }

    .vacancy-slider .swiper-slide .bg-purple {
        flex: 1;
    }

    .vacancy-slider-wrapper .swiper-navigation-elements {
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        pointer-events: none;
    }

    .vacancy-slider-wrapper .swiper-navigation-elements > div {
        pointer-events: all;
    }

    .vacancy-slider-wrapper .swiper-button-prev-vacancy {
        position: absolute;
        top: -40px;
        left: -80px;
    }

    .vacancy-slider-wrapper .swiper-button-next-vacancy {
        position: absolute;
        top: -40px;
        right: -80px;
    }

    .vacancy-slider-wrapper {
        position: relative;
    }
}


/* Review slider */
.review-slider-wrapper {
    margin: .5rem 0 0;
}

section:has(.review-slider) {
    overflow: visible;
}

.review-slider {
    width: 100%;
    overflow: visible;
    margin-left: 0;
    cursor: grab;
}

.review-slider:active {
    cursor: grabbing;
}

.review-slider .swiper-wrapper {
    margin-left: 0;
}

.review-slider .swiper-slide {
    width: 325px;
    max-height: 550px;
    display: flex;
    border: 2px solid var(--gw-purple);
}

.review-slider .swiper-slide.orange {
    border-color: var(--gw-orange);
}

.review-slider .swiper-slide.orange .review-author span {
    color: var(--gw-orange);
}

.review-slider .swiper-slide.blue {
    border-color: var(--gw-blue);
}

.review-slider .swiper-slide.blue .review-author span {
    color: var(--gw-blue);
}

.review-slider .swiper-slide.green {
    border-color: var(--gw-green);
}

.review-slider .swiper-slide.green .review-author span {
    color: var(--gw-green);
}

.review-slider .swiper-slide .review-message {
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
}

.review-slider .swiper-slide .review-author {
    font-weight: 700;
    font-size: 1rem;
}

.review-slider .swiper-slide .review-author span {
    color: var(--gw-purple);
}

.review-slider-wrapper .swiper-button-prev-review,
.review-slider-wrapper .swiper-button-next-review {
    border-radius: 4px;
    width: 56px;
    height: 56px;
    position: static;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-slider-wrapper .swiper-button-prev-review::after,
.review-slider-wrapper .swiper-button-next-review::after {
    height: 22px;
    font-size: var(--bs-body-font-size);
    display: inline-block;
    transition: transform 0.3s ease;
}

.review-slider-wrapper .swiper-button-prev-review:hover::after {
    transform: translateX(-4px);
}

.review-slider-wrapper .swiper-button-next-review:hover::after {
    transform: translateX(4px);
}

.review-slider-wrapper .swiper-button-prev-review::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.67773 1.41406L3.82812 7.26367H14.9092V9.26367H3.82812L9.67773 15.1133L8.26367 16.5273L0 8.26367L8.26367 0L9.67773 1.41406Z' fill='%23371B52'/%3E%3C/svg%3E ");
}

.review-slider-wrapper .swiper-button-next-review::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9102 8.26367L6.64648 16.5273L5.93945 15.8203L5.23145 15.1133L11.082 9.26367H0V7.26367H11.082L5.23145 1.41406L5.93945 0.707031L6.64648 0L14.9102 8.26367Z' fill='%23371B52'/%3E%3C/svg%3E%0A");
}

.review-slider-wrapper .swiper-navigation-elements {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.review-slider-wrapper .swiper-navigation-elements > div {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {

    section:has(.review-slider) {
        overflow: hidden;
    }

    .review-slider-wrapper {
        overflow: visible;
        position: relative;
    }

    .review-slider {
        overflow: visible;
    }

    .review-slider-wrapper::before {
        content: '';
        position: absolute;
        left: -100vw;
        top: 0;
        width: 100vw;
        height: 100%;
        background-color: var(--gw-light);
        z-index: 10;
        pointer-events: none;
    }

    section.bg-purple:has(.review-slider) .review-slider-wrapper::before {
        background-color: var(--gw-purple);
    }

    section.bg-light-blue:has(.review-slider) .review-slider-wrapper::before {
        background-color: var(--gw-light-blue);
    }

    .review-slider {
        overflow: visible;
    }
}

@media (min-width: 992px) {

    .review-slider {
        overflow: hidden;
    }

    .review-slider .swiper-wrapper {
        align-items: stretch;
    }

    .review-slider .swiper-slide {
        display: flex;
    }

    .review-slider .swiper-slide > div {
        flex: 1;
    }

    .review-slider-wrapper .swiper-navigation-elements > div {
        pointer-events: all;
    }

    .review-slider-wrapper .swiper-button-prev-review,
    .review-slider-wrapper .swiper-button-next-review {
        display: none;
    }

    .review-slider-wrapper {
        position: relative;
    }
}


/* News slider */
.news-slider-wrapper {
    margin: .5rem 0 0;
}

section:has(.news-slider) {
    overflow: visible;
}

.news-slider {
    width: 100%;
    overflow: visible;
    margin-left: 0;
}

.news-slider .swiper-wrapper {
    margin-left: 0;
}

.news-slider .swiper-slide {
    width: 325px;
    height: auto;
    display: flex;
    background-color: var(--gw-light-blue);
    position: relative;
    overflow: hidden;
}

.news-slider .swiper-slide>div:last-child {
    flex: 1;
}

.news-slider .swiper-slide>.news-image {
    flex: none;
}

.news-slider .swiper-slide .news-image {
    aspect-ratio: 16 / 9;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.news-slider .swiper-slide .news-title {
    font-size: 1.25rem;
    color: var(--gw-purple);
}

.news-slider .swiper-slide .news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.4s ease;
    will-change: transform;
}

.news-slider .swiper-slide:hover .news-image img {
    transform: scale(1.08);
}

.news-slider .swiper-slide .news-message {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.news-slider .swiper-slide .news-message {
    font-size: 1rem;
    line-height: 1.2;
}

.news-slider-wrapper .swiper-navigation-elements {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.news-slider-wrapper .swiper-navigation-elements > div {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {

    section:has(.news-slider) {
        overflow: hidden;
    }

    .news-slider-wrapper {
        overflow: visible;
        position: relative;
    }

    .news-slider {
        overflow: visible;
    }

    .news-slider-wrapper::before {
        content: '';
        position: absolute;
        left: -100vw;
        top: 0;
        width: 100vw;
        height: 100%;
        background-color: var(--gw-light);
        z-index: 10;
        pointer-events: none;
    }

    section.bg-purple:has(.news-slider) .news-slider-wrapper::before {
        background-color: var(--gw-purple);
    }

    section.bg-light-blue:has(.news-slider) .news-slider-wrapper::before {
        background-color: var(--gw-light-blue);
    }

    .news-slider {
        overflow: visible;
    }
}

@media (min-width: 992px) {

    .news-slider {
        overflow: hidden;
    }

    .news-slider .swiper-wrapper {
        align-items: stretch;
    }

    .news-slider .swiper-slide {
        height: auto;
        display: flex;
    }

    .news-slider-wrapper .swiper-navigation-elements > div {
        pointer-events: all;
    }

    .news-slider-wrapper {
        position: relative;
    }
}


/* News articles */
section:has(.news-article) {
    padding-bottom: 0 !important;
}

.news-article {
    background-color: var(--gw-light-blue);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.news-article .news-image {
    aspect-ratio: 16 / 9;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    flex-shrink: 0;
}

.news-article .news-image img {
    display: block;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transition: transform 0.4s ease;
    will-change: transform;
    object-fit: cover;
}

.news-article:hover .news-image img {
    transform: scale(1.08);
}

.news-article .news-message {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}

.news-article .news-title {
    font-size: 1.25rem;
    color: var(--gw-purple);
    
}

.news-article .news-message {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: auto;
}


/* Team slider */
.team-slider-wrapper {
    margin: .5rem 0 0;
}

section:has(.team-slider) {
    overflow: visible;
}

.team-slider {
    width: 100%;
    overflow: visible;
    margin-left: 0;
    cursor: grab;
}

.team-slider img {
    height: 250px;
    object-fit: cover;
}

.team-slider:active {
    cursor: grabbing;
}

.team-slider .swiper-wrapper {
    margin-left: 0;
}

.team-slider .swiper-slide {
    width: 325px;
    height: auto;
    display: flex;
}

.team-slider .swiper-slide img {
    border-radius: .5rem;
}

.team-slider .team-title {
    font-size: 1.25rem;
    color: var(--gw-purple);
}

.team-slider .team-tel, .team-slider .team-mail {
    color: var(--gw-purple);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.team-slider .team-tel a, .team-slider .team-mail a {
    color: var(--gw-purple);
    text-decoration: underline;
    text-decoration-color: var(--gw-orange);
    text-decoration-thickness: 9%;
    text-underline-offset: 40%;
}


.team-slider-wrapper .swiper-navigation-elements {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.team-slider-wrapper .swiper-navigation-elements > div {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {

    section:has(.team-slider) {
        overflow: hidden;
    }

    .team-slider-wrapper {
        overflow: visible;
        position: relative;
    }

    .team-slider {
        overflow: visible;
    }

    .team-slider-wrapper::before {
        content: '';
        position: absolute;
        left: -100vw;
        top: 0;
        width: 100vw;
        height: 100%;
        background-color: var(--gw-light);
        z-index: 10;
        pointer-events: none;
    }

    section.bg-purple:has(.team-slider) .team-slider-wrapper::before {
        background-color: var(--gw-purple);
    }

    section.bg-light-blue:has(.team-slider) .team-slider-wrapper::before {
        background-color: var(--gw-light-blue);
    }

    .team-slider {
        overflow: visible;
    }
}

@media (min-width: 992px) {

    .team-slider {
        overflow: hidden;
    }

    .team-slider .swiper-wrapper {
        align-items: stretch;
    }

    .team-slider .swiper-slide {
        height: auto;
        display: flex;
    }

    .team-slider .swiper-slide > div {
        flex: 1;
    }

    .team-slider-wrapper .swiper-navigation-elements > div {
        pointer-events: all;
    }

    .team-slider-wrapper {
        position: relative;
    }
}


/* Location slider */
section:has(.location-slider)>.container:first-of-type>.row:first-of-type {
    background-color: var(--gw-light-blue);
    padding-top: 3rem;
    padding-bottom: 1rem;
    border-radius: 8px 8px 0 0;
}

.row .location-slider-wrapper {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.location-slider {
    width: 100%;
    margin-left: 0;
}

.location-slider .swiper-wrapper {
    margin-left: 0;
}

.location-slider-wrapper,
.location-slider-wrapper * {
    user-select: none;
    -webkit-user-select: none;
}

.location-slider-wrapper img {
    -webkit-user-drag: none;
    user-drag: none;
}

.location-slider .swiper-slide {
    width: 250px;
    height: auto;
    display: flex;
    opacity: .2;
    cursor: grab;
    transition: opacity 0.8s ease;
    will-change: opacity;
}

.location-slider .swiper-slide:active {
    cursor: grabbing;
}

.location-slider .swiper-slide-active {
    opacity: 1;
}

.location-title {
    font-size: 1.25rem;
    color: var(--gw-purple);
    margin-bottom: 3rem;
    text-align: center;
}

.location-details-wrapper {
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    background-color: var(--gw-purple);
    overflow: hidden;
}

.location-details {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    transition: transform 0.5s ease, opacity 0.3s ease;
    transform: translateX(0);
    opacity: 1;
}

.location-details.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.location-details.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.location-details .location-address,
.location-details .location-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 991px) {

    .location-details {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .location-details .location-address,
    .location-details .location-contact {
        align-items: center;
    }
}

.location-details .location-address p, .location-details .location-contact a {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--gw-light);
    margin-bottom: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.location-details .location-contact a {
    text-decoration: underline;
    text-decoration-color: var(--gw-orange);
    text-decoration-thickness: 8%;
    text-underline-offset: 14%;
}

.location-slider-wrapper .swiper-button-prev-location,
.location-slider-wrapper .swiper-button-next-location {
    border-radius: 4px;
    width: 56px;
    height: 56px;
    position: static;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-slider-wrapper .swiper-button-prev-location::after,
.location-slider-wrapper .swiper-button-next-location::after {
    height: 22px;
    font-size: var(--bs-body-font-size);
    display: inline-block;
    transition: transform 0.3s ease;
}

.location-slider-wrapper .swiper-button-prev-location:hover::after {
    transform: translateX(-4px);
}

.location-slider-wrapper .swiper-button-next-location:hover::after {
    transform: translateX(4px);
}

.location-slider-wrapper .swiper-button-prev-location::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.67773 1.41406L3.82812 7.26367H14.9092V9.26367H3.82812L9.67773 15.1133L8.26367 16.5273L0 8.26367L8.26367 0L9.67773 1.41406Z' fill='%23371B52'/%3E%3C/svg%3E ");
}

.location-slider-wrapper .swiper-button-next-location::after {
    content: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.9102 8.26367L6.64648 16.5273L5.93945 15.8203L5.23145 15.1133L11.082 9.26367H0V7.26367H11.082L5.23145 1.41406L5.93945 0.707031L6.64648 0L14.9102 8.26367Z' fill='%23371B52'/%3E%3C/svg%3E%0A");
}

.location-slider-wrapper .swiper-navigation-elements {
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.location-slider-wrapper .swiper-navigation-elements > div {
    display: flex;
    gap: 1rem;
}

@media (min-width: 992px) {
    .location-slider .swiper-wrapper {
        align-items: stretch;
    }

    .location-slider .swiper-slide {
        height: auto;
        display: flex;
    }

    .row.bg-light-blue {
        position: relative;
    }

    .row.bg-light-blue .swiper-navigation-elements {
        position: absolute;
        width: 100%;
        top: 0;
        transform: translateY(-50%);
        margin-top: 0;
        pointer-events: none;
    }

    .row.bg-light-blue .swiper-navigation-elements > div {
        pointer-events: all;
    }

    .row.bg-light-blue .swiper-button-prev-location {
        position: absolute;
        top: -40px;
        left: -80px;
    }

    .row.bg-light-blue .swiper-button-next-location {
        position: absolute;
        top: -40px;
        right: -80px;
    }
}


/* Expertise list */
.expertise-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-bottom: 2px solid var(--gw-orange);
    transition: all .2s ease-in;
}

.expertise-link:hover {
    background-color: var(--gw-light-orange);
    border-bottom-color: transparent;
    border-radius: 0 0 4px 4px;
}

.expertise-link:hover {
    background-color: var(--gw-light-orange);
    border-bottom-color: var(--gw-light-orange);
    border-radius: 0 0 4px 4px;
}

.col-12:first-child .col:first-child .expertise-link:hover {
    border-radius: 4px;
}

@media (min-width: 992px) {

    .col-lg-6 .col:first-child .expertise-link:hover {
        border-radius: 4px;
    }
}

.expertise-icon {
    width: 32px;
    height: 32px;
}

.expertise-title {
    color: var(--gw-dark);
    font-weight: 700;
    font-size: 1.25rem;
    hyphens: auto;
}


/* Steps */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

section.bg-light .step {
    border: 2px var(--gw-purple) solid;
}

.step h3 {
    font-size: 1.125rem;
}

.step p {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0;
}


/* Image split */
.content-split-row {
    position: relative;
}

@media (max-width: 991px) {

    .content-split-row {
        padding-top: 0 !important;
    }

    .split-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* Desktop styling: creates the image block on the right */
@media (min-width: 992px) {

    .content-split-row::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: calc(50% - 15px);
        height: 100%;
        background-image: var(--split-bg-img);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* FAQ */
.accordionFAQ {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.accordionFAQ .accordion-item {
    border: none;
    border-radius: var(--bs-border-radius);
    overflow: hidden;
}

.accordionFAQ .accordion-button {
    background: var(--gw-purple);
    color: var(--gw-light);
    line-height: 100%;
    font-size: 1.25rem;
    font-weight: 700;
    align-items: flex-start;
    padding: 1.75rem 1.5rem;
}

.accordionFAQ .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='17' viewBox='0 0 15 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.67773 1.41406L3.82812 7.26367H14.9092V9.26367H3.82812L9.67773 15.1133L8.26367 16.5273L0 8.26367L8.26367 0L9.67773 1.41406Z' fill='%23F7941D'/%3E%3C/svg%3E ");

}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordionFAQ .accordion-button:focus {
    box-shadow: none;
}

.accordionFAQ .accordion-button:not(.collapsed) {
    background: var(--gw-purple);
    color: var(--gw-orange);
    box-shadow: unset;
}

.accordionFAQ .accordion-body {
    background: var(--gw-purple);
    color: var(--gw-light);
    padding: 0 1.5rem 1.75rem 1.5rem;
}

/* Call to Action */
.cta-wrapper {
    position: relative;
}

.cta-image {
    position: absolute;
    right: -185px;
    top: -125px;
    height: 650px;
    width: 650px;
    border: 23px solid #fff;
    border-radius: 1000px;
}

@media (min-width: 1200px) {

    .cta-image {
        right: -150px;
        top: -100px;
        height: 700px;
        width: 700px;
    }
}

@media (min-width: 1400px) {

    .cta-image {
        right: -100px;
        top: -150px;
        height: 750px;
        width: 750px;
    }
}


/* Vacancy filter */
.filter-block {
    border-radius: .5rem;
    padding: 0 1rem 1rem 1rem;
}

.filter-block .accordion {
    --bs-accordion-color: var(--gw-dark);
    --bs-accordion-bg:  transparent;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 1rem;
    --bs-accordion-btn-color: var(--gw-purple);
    --bs-accordion-btn-bg: var(--bs-accordion-bg);
    --bs-accordion-border-color:  transparent;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='7' width='10' height='2' fill='%23371B52'/%3E%3Crect x='9' y='3' width='10' height='2' transform='rotate(90 9 3)' fill='%23371B52'/%3E%3C/svg%3E%0A");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: 0;
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='7' width='10' height='2' fill='%23371B52'/%3E%3C/svg%3E%0A");
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-active-color: var(--gw-purple);
    --bs-accordion-active-bg: transparent;
}

.filter-block .accordion .accordion-button {
    font-size: 1.5rem;
    font-weight: 700;
}

.filter-block .accordion .form-check-input {
    border: 2px solid var(--gw-purple);
}

.filter-block .accordion .form-check-input:checked {
    background-color: var(--gw-orange);
}

.filter-block .accordion .form-check-input:active {
    filter: brightness(100%);
}

.filter-block .accordion .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--gw-orange) 25%, transparent);
}

.filter-block label {
    font-size: 1rem;
}

.mobile-vacancy-filters {
    --bs-modal-bg: var(--gw-light);
}

.mobile-vacancy-filters .modal-header {
    border: none;
}

.mobile-vacancy-filters .modal-body {
    padding-top: 0;
}

.range {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 0 2rem 1rem 0;
}

.range__value {
    font-weight: 500;
    color: #333;
    line-height: 1;
    margin-top: 24px;
}

.js-range-slider.ui-slider {
    height: 6px;
    border-radius: 999px;
    background: #e7e7e7;
    border: 0;
    position: relative;
    margin-top: 24px; /* Space for handle values */
    margin-bottom: 0; /* Remove extra space */
}

.js-range-slider .ui-slider-range {
    background: var(--gw-purple);
    border-radius: 999px;
}

.js-range-slider .ui-slider-handle {
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
    border-radius: 50%;
    background: var(--gw-orange);
    border: 2px solid var(--gw-light);
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
    cursor: pointer;
    outline: none;
}

/* Larger touch area on mobile */
@media (max-width: 1199px) {
    .js-range-slider .ui-slider-handle {
        width: 20px;
        height: 20px;
    }
}

.js-range-slider .ui-slider-handle::after {
    content: attr(data-value);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gw-purple);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}


/* Vacancies */
.vacancy-item {
    height: auto;
    position: relative;
    overflow: hidden;
    text-align: start;
}

.vacancy-item.bg-purple {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vacancy-item .bg-purple::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background-color: var(--gw-orange);
    border-radius: 100%;
    z-index: 1;
    transform: scale(1);
    transform-origin: center;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.50, 1);
}

.vacancy-item:hover .bg-purple::after {
    transform: scale(4.75);
}

@media (min-width: 768px) and (max-width: 991px) {

    .vacancy-item:hover .bg-purple::after {
        transform: scale(5.5);
    }
}

@media (min-width: 992px) {

    .vacancy-item:hover .bg-purple::after {
        transform: scale(6.5);
    }
}

@media (min-width: 1200px) {

    .vacancy-item:hover .bg-purple::after {
        transform: scale(8);
    }
}

@media (min-width: 1400px) {

    .vacancy-item:hover .bg-purple::after {
        transform: scale(9);
    }
}

.vacancy-item .bg-purple > div {
    position: relative;
    z-index: 2;
}

.vacancy-title {
    color: var(--gw-light);
    font-size: 1.25rem;
}

.vacancy-description {
    color: var(--gw-light);
    font-size: 1rem;
    max-width: 650px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vacancy-description * {
    margin-bottom: 0;
}

.vacancy-cta-item {
    text-align: start;
}

.vacancy-cta-item .cta-description {
    color: var(--gw-light);
    margin-bottom: .5rem;
}

.vacancy-cta-item .btn {
    min-width: max-content;
}

@media (min-width: 1200px) {

    .vacancy-cta-item .vacancy-title {
        font-size: 3rem;
    }

    .vacancy-cta-item .vacancy-description {
        font-size: 1.25rem;
    }
}


/* Vacancy detail */
.vacancy-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    line-height: 140%;
}

#vacancy-detail .vacancy-detail {
    position: relative;
    top: -2rem;
}

#vacancy-detail .recruiter-wrapper {
    padding-bottom: 2rem;
}

#vacancy-detail .vacancy-recruiter {
    position: sticky;
    top: 2rem;
    margin-top: 2rem;
}

.recruiter-contact {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.bg-orange .recruiter-contact {
    color: var(--gw-light);
}

.vacancy-detail h2 {

    @media (max-width: 991px) {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {

    .header-button-wrapper a {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .header-button-wrapper a {
        width: 50%;
    }
}


/* Application form */
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-title {
    font-size: 3rem;
    color: var(--gw-purple);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) p {
    font-size: 1.25rem;
    color: var(--gw-dark);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) form label {
    font-size: .75rem;
    color: var(--gw-dark);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .privacy-label {
    font-size: 1rem;
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .form-control,
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-select {
    padding: .5rem 0;
    color: var(--gw-dark);
    font-size: 1rem;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--gw-dark);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .form-control:focus,
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-control:focus-visible,
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-select:focus,
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-select:focus-visible {
    outline: none;
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--gw-orange) 25%, transparent);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .form-control::placeholder,
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-select::placeholder {
    color: var(--gw-gray);
    opacity: 1;
}

/* For Firefox */
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-control::-moz-placeholder,
section:has(#applicationForm, #openApplicationForm, #contactForm) .form-select::-moz-placeholder {
    color: var(--gw-gray);
    opacity: 1;
}

.form-control:has(.fake-file-upload-btn) {
    position: relative;
    height: 50px;
    cursor: pointer;
}

.fake-file-upload-btn {
    width: 175px;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: end;
}

.fake-file-upload-btn span {
    display: none;
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .form-check-input {
    border: 2px solid var(--gw-purple);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .form-check-input:checked {
    background-color: var(--gw-orange);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .form-check-input:active {
    filter: brightness(100%);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--gw-orange) 25%, transparent);
}

section:has(#applicationForm, #openApplicationForm, #contactForm) small {
    color: var(--gw-gray);
    font-size: 0.875rem;
}

@media (min-width: 768px) {

    .fake-file-upload-btn {
        justify-content: center;
    }

    .fake-file-upload-btn span {
        display: inline;
    }
}

.file-input-text {
    color: var(--gw-gray);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-input-text.has-file {
    color: var(--gw-dark);
}

@media (min-width: 992px) {

    .application-form-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 1400px) {

    .application-form-image {
        max-height: 606.38px !important;
    }
}

/* Footer */
footer h3 {
    color: var(--gw-light);
}

footer .footer-item {
    color: var(--gw-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all .3s ease-in;
}

footer .footer-item:hover {
    color: var(--gw-orange);
}

footer .lower-footer {
    border-top: 2px solid var(--gw-light-10);
}

footer .lower-footer *  {
    color: var(--gw-light-50);
    font-size: 1rem;
    margin-bottom: 0;
}
.grecaptcha-badge {
    visibility: hidden; 
}

.social-media {
    display: flex;
    gap: 1rem;
}

@media (max-width: 991px) {
    .social-media {
        justify-content: center;
    }
}

/* Dit effect is minder zwaar voor de browser -Caspar */
.social-media a img {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    transition: all .3s ease-in-out;
}

.social-media a:hover img {
    background-color: var(--gw-orange);
}

@media (min-width: 992px) {
    .sticky-img {
        position: sticky;
        top: 100px;
    }
}