.breadcrumb {
    width: 100%;
    margin-bottom: 20px;
}
.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 20px;
}
@media (max-width: 767.98px) {
    .breadcrumb__list {
        flex-wrap: nowrap;
    }
    .breadcrumb__list li:last-child {
        width: fit-content;
        max-width: 535px;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
    }
}
.breadcrumb__item {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    color: #45464a;
    text-decoration: none;
    white-space: nowrap;
}
.breadcrumb__item--home {
    color: #45464a;
}
.breadcrumb__item--home:hover {
    color: #00529c;
}
.breadcrumb__item--current {
    color: #45464a;
    cursor: default;
}
.breadcrumb__item:not(.breadcrumb__item--current):not(.breadcrumb__item--home):hover {
    color: #00529c;
}
.breadcrumb a.breadcrumb__item {
    transition: color 0.2s ease;
}
.breadcrumb a.breadcrumb__item:hover {
    text-decoration: none;
}
.breadcrumb__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #45464a;
}
.breadcrumb__icon {
    width: 16px;
    height: 16px;
    color: #45464a;
    flex-shrink: 0;
}

.intro-banner {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
}
.intro-banner__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.intro-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.intro-banner__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 60px 0 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(71, 71, 71, 0.4) 55%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}
.intro-banner .breadcrumb__list {
    gap: 8px;
}
.intro-banner .breadcrumb__item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
}
.intro-banner .breadcrumb__item a {
    color: #ffffff;
}
.intro-banner .breadcrumb__separator {
    color: #ffffff;
}
.intro-banner__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}
@media (max-width: 1280px) {
    .intro-banner {
        height: 480px;
    }
    .intro-banner__content {
        height: 260px;
        padding: 50px 0px 36px;
    }
    .intro-banner__title {
        font-size: 40px;
    }
}
@media (max-width: 1024px) {
    .intro-banner {
        height: 420px;
    }
    .intro-banner__content {
        height: 240px;
        padding: 40px 0 32px;
    }
    .intro-banner__title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .intro-banner {
        height: 578px;
    }
    .intro-banner__content {
        height: 200px;
        padding: 32px 0px 28px;
        gap: 6px;
    }
    .intro-banner .breadcrumb__item {
        font-size: 12px;
    }
    .intro-banner__title {
        font-size: 32px;
    }
}
/*# sourceMappingURL=banner.css.map */
.services {
    padding: 72px 0;
}
.services__intro {
    margin-bottom: 72px;
}
.services__intro p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #111832;
    margin: 0;
    max-width: 1057px;
}
.services__list {
    display: flex;
    flex-direction: column;
}
.services__item {
    position: relative;
    display: flex;
    min-height: 431px;
}
.services__item--right {
    justify-content: flex-end;
    padding-right: 60px;
}
.services__item--left {
    justify-content: flex-start;
    padding-left: 60px;
}
.services__image-wrapper {
    position: absolute;
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 0;
}
.services__item--right .services__image-wrapper {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.services__item--left .services__image-wrapper {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.services__image {
    width: 100%;
    height: 100%;
    position: relative;
}
.services__image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D9D9D9;
    z-index: 0;
}
.services__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.services__card {
    position: relative;
    z-index: 2;
    width: 440px;
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(16.6px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.services__card--warehouse {
    background: linear-gradient(180deg, #959898 0%, #6F7473 10%, rgba(74, 79, 78, 0.8) 50%, #484E50 90%, #464D51 100%);
}
.services__card--transport {
    background: linear-gradient(180deg, #105FBA 0%, #2666AF 7.92%, rgba(46, 113, 146, 0.34) 46.7%, #336ABE 92%, #3962A0 100%);
}
.services__card--depot {
    background: linear-gradient(180deg, #6781AE 0%, #7385A5 10%, rgba(138, 155, 184, 0.8) 50%, #6D7D99 90%, #66748B 100%);
}
.services__card--yard {
    background: linear-gradient(180deg, #035983 0%, #1D6B92 7.92%, rgba(44, 119, 156, 0.7) 50%, #0F3E56 92%, #133647 100%);
}
.services__card--sub-1 {
    background: linear-gradient(180deg, #684F3B 0%, #694E39 10%, rgba(112, 97, 85, 0.7) 50%, #73655B 90%, #6B5F56 100%);
}
.services__card--sub-2 {
    background: linear-gradient(180deg, #216820 0%, #285F2B 7.92%, rgba(30, 69, 26, 0.5) 46.7%, #114C1B 92%, #0A460D 100%);
}
.services__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.265;
    color: #ffffff;
    margin: 0;
}
.services__features {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
}
.services__features ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.services__features ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 24px;
    position: relative;
}
.services__features ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 0L8.8809 5.1191L14 7L8.8809 8.8809L7 14L5.1191 8.8809L0 7L5.1191 5.1191L7 0Z' fill='white'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
.services__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.services__btn {
    display: flex;
    align-items: center;
    gap: 21px;
    padding: 12px 16px;
    height: 40px;
    background: transparent;
    border: 2px solid #e8eef0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.265;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.services__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.services__btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 8.889px;
    background: transparent;
    border: 2px solid #e8eef0;
    border-radius: 8.889px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.services__btn-icon svg {
    width: 22.22px;
    height: 22.22px;
    display: block;
}
.services__btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 1440px) {
    .services__item--right {
        padding-right: 40px;
    }
    .services__item--left {
        padding-left: 40px;
    }
}
@media (max-width: 1280px) {
    .services {
        padding: 60px 0;
    }
    .services__intro {
        margin-bottom: 60px;
    }
    .services__intro p {
        font-size: 18px;
    }
    .services__item--right {
        padding-right: 32px;
    }
    .services__item--left {
        padding-left: 32px;
    }
    .services__image-wrapper {
        height: 320px;
    }
    .services__card {
        width: 400px;
        padding: 36px;
    }
    .services__title {
        font-size: 36px;
    }
    .services__features ul li {
        font-size: 15px;
    }
}
@media (max-width: 991px) {
    .services {
        padding: 40px 0 0 0;
    }
    .services__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .services__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 !important;
        min-height: unset;
        width: 100%;
    }
    .services__image-wrapper {
        left: unset;
        top: 40px;
        height: 200px;
    }
    .services__image-wrapper img {
        border-radius: 4px;
    }
    .services__card {
        max-width: calc(100% - 40px);
        padding: 20px;
        gap: 20px;
        min-height: unset;
        position: relative;
        top: -40px;
    }
    .services__card ul {
        gap: 12px;
    }
    .services__card ul li {
        font-size: 14px;
    }
    .services__title {
        font-size: 28px;
    }
    .services__btn {
        padding: 12px 16px;
        font-weight: 500;
    }
    .services__item--right .services__image-wrapper {
        position: relative;
        transform: none;
        height: unset;
        aspect-ratio: 335/200;
    }
    .services__item--left .services__image-wrapper {
        position: relative;
        transform: none;
        height: unset;
        aspect-ratio: 335/200;
    }
}
@media (max-width: 768px) {
    .services {
        padding: 40px 0 0 0;
    }
    .services__intro {
        margin-bottom: 40px;
    }
    .services__intro p {
        font-size: 16px;
        line-height: 1.3;
    }
    .services__list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .services__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: unset;
        width: 100%;
    }
    .services__image-wrapper {
        max-width: calc(100vw - 40px);
        width: 500px;
        left: unset;
        top: 40px;
        height: 200px;
    }
    .services__image-wrapper img {
        border-radius: 4px;
    }
    .services__card {
        padding: 20px;
        gap: 20px;
        min-height: unset;
    }
    .services__card ul {
        gap: 12px;
    }
    .services__card ul li {
        font-size: 14px;
    }
    .services__title {
        font-size: 28px;
    }
    .services__btn {
        padding: 12px 16px;
        font-weight: 500;
    }
}
/*# sourceMappingURL=services.css.map */
