:root {
    --second-family: 'Plus Jakarta Sans', sans-serif;
    --font-family: 'DM Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --color-text-text-950: #0f172a;
    --primary: #4dc0b5;
    --active-breadcrumb-color: #1e7d60;
}

html,
body {
    overflow-x: hidden;
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
}

.services-section {
    position: relative;
    width: 100%;
    height: 543px;
    overflow: hidden;
    margin-inline: auto;
    padding-top: 108px;
}

.services-section img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-section .content-box {
    position: absolute;
    bottom: 0;
    left: calc(50% - 700px);
    width: 900px;
    max-width: 900px;
    height: 170px;
    background-color: white;
    border-radius: 16px 16px 0 0;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px;
    box-sizing: border-box;
    z-index: 10;
    box-shadow: none;
}

.breadcrumb-container {
    margin-bottom: 12px;
    width: 100%;
    background-color: white;
}

nav .breadcrumb {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: white;
}

nav .breadcrumb-item a {
    padding: 0 2px;
    color: #27272a;
    text-decoration: none;
    white-space: nowrap;
    background-color: white;
}

nav .breadcrumb-separator {
    color: #6c757d;
    padding: 0 4px;
    user-select: none;
    background-color: white;
}

nav .breadcrumb-item.active {
    color: var(--active-breadcrumb-color);
    padding-left: 2px;
    background-color: white;
    font-weight: 600;
}

.services-title {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #292929;
    margin: 0;
}

@media (max-width: 1400px) {
    .services-section .content-box {
        left: 9%;
        width: min(900px, 75%);
    }
}

@media (max-width: 1200px) {
    .services-section .content-box {
        left: 6%;
        width: min(900px, 80%);
    }
}

@media (max-width: 1024px) {
    .services-section .content-box {
        left: 9%;
        width: 720px;
        max-width: 720px;
        padding: 32px;
    }
}

@media (max-width: 992px) {
    .services-section {
        height: auto;
        min-height: 427px;
    }

    .services-section img {
        height: 100%;
    }

    .services-section .content-box {
        left: 20px;
        width: calc(100% - 40px);
        max-width: 720px;
        padding: 20px;
    }

    .services-title {
        font-size: 40px;
    }

    nav .breadcrumb {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .services-section .content-box {
        left: 78px;
        width: calc(100% - 156px);
        max-width: 500px;
        padding: 20px;
    }

    .services-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding-top: 70px;
    }

    .services-section .content-box {
        left: 0;
        width: calc(100% - 32px);
        max-width: none;
        padding: 16px;
        position: absolute;
    }

    .services-title {
        font-size: 28.8px;
    }

    .breadcrumb-container {
        margin-bottom: 8px;
    }

    nav .breadcrumb {
        font-size: 16px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    nav .breadcrumb-item a {
        padding: 0 6px;
    }

    nav .breadcrumb-item.active {
        padding-left: 6px;
    }

    nav .breadcrumb-separator {
        padding: 0 2px;
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .services-section {
        height: 425px;
        min-height: 425px;
    }

    .services-section img {
        height: 100%;
    }

    .services-section .content-box {
        left: 0;
        width: calc(100% - 32px);
        max-width: 350px;
        padding: 32px 16px;
        position: absolute;
        height: 115px;
    }

    .services-title {
        font-size: 32px;
    }

    nav .breadcrumb {
        font-size: 14px;
    }
}

@media (max-width: 320px) {
    .services-section {
        height: 470px;
        min-height: 470px;
    }

    .services-section img {
        height: 100%;
    }

    .services-section .content-box {
        left: 0;
        width: calc(100% - 32px);
        max-width: none;
        padding: 28px 16px;
        position: absolute;
        height: 150px;
        bottom: 0;
    }

    .services-title {
        font-size: 30px;
        line-height: 1.2;
    }

    nav .breadcrumb {
        font-size: 14px;
    }
}