.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 */
.warehouse-detail {
    padding: 72px 0;
}
.warehouse-detail__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
}
.warehouse-detail__row {
    display: flex;
    align-items: center;
    gap: 40px;
}
.warehouse-detail__row--reverse .warehouse-detail__item {
    flex-direction: row-reverse;
}
@media (max-width: 1199.98px) {
    .warehouse-detail__row--reverse .warehouse-detail__item {
        flex-direction: column !important;
    }
}
@media (max-width: 1199.98px) {
    .warehouse-detail__row .warehouse-detail__item {
        flex-direction: column;
    }
}
.warehouse-detail__item {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .warehouse-detail__item {
        gap: 32px;
        align-items: stretch;
    }
}
.warehouse-detail__image-wrapper {
    flex: 1;
    position: relative;
    width: calc(100% - 400px - 40px);
    height: 600px;
    order: 1;
}
@media (max-width: 1199.98px) {
    .warehouse-detail__image-wrapper {
        width: 100%;
        height: 500px;
        order: 2;
    }
}
@media (max-width: 991.98px) {
    .warehouse-detail__image-wrapper {
        height: 450px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-detail__image-wrapper {
        height: 400px;
    }
}
.warehouse-detail__image {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.warehouse-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.warehouse-detail__info {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    order: 2;
}
@media (max-width: 1199.98px) {
    .warehouse-detail__info {
        flex: 1 1 auto;
        gap: 24px;
        order: 1;
    }
}
.warehouse-detail__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.265;
    color: #111832;
    margin: 0;
}
@media (max-width: 991.98px) {
    .warehouse-detail__title {
        font-size: 36px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-detail__title {
        font-size: 28px;
    }
}
.warehouse-detail__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.warehouse-detail__details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #111832;
    margin: 0;
}
@media (max-width: 767.98px) {
    .warehouse-detail__details p {
        font-size: 15px;
    }
}
.warehouse-detail__details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.warehouse-detail__details ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #45464a;
}
.warehouse-detail__details ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    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='url(%23paint0_linear_378_1746)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_378_1746' x1='14' y1='7' x2='0' y2='7' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234858EF'/%3E%3Cstop offset='1' stop-color='%231BB5EC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.warehouse-detail__info-cards {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}
@media (max-width: 991.98px) {
    .warehouse-detail__info-cards {
        flex-direction: column;
        gap: 16px;
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
}
.warehouse-detail__card {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16.6px);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: fit-content;
    max-width: 390px;
}
@media (max-width: 767.98px) {
    .warehouse-detail__card {
        padding: 12px;
        gap: 8px;
    }
}
.warehouse-detail__card p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #111832;
}
@media (max-width: 767.98px) {
    .warehouse-detail__card p {
        font-size: 14px;
    }
}
.warehouse-detail__card p.card-value {
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    color: #111832;
}
.warehouse-detail__card p.card-value .number {
    background: linear-gradient(180deg, #4858EF 0%, #1BB5EC 63%, #D8F5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 767.98px) {
    .warehouse-detail__card p.card-value {
        font-size: 24px;
    }
}
.warehouse-detail__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (max-width: 767.98px) {
    .warehouse-detail__card ul {
        gap: 8px;
    }
}
.warehouse-detail__card ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #45464a;
}
@media (max-width: 767.98px) {
    .warehouse-detail__card ul li {
        font-size: 13px;
    }
}
.warehouse-detail__card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    transform: translateY(-50%);
    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='url(%23paint0_linear_378_1746)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_378_1746' x1='14' y1='7' x2='0' y2='7' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%234858EF'/%3E%3Cstop offset='1' stop-color='%231BB5EC'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.warehouse-detail__card .card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}

@media (max-width: 991px) {
    .warehouse-detail {
        padding: 40px 0;
    }
    .warehouse-detail__content {
        gap: 58px;
    }
    .warehouse-detail__item {
        flex-direction: column;
        gap: 20px;
    }
    .warehouse-detail__image-wrapper {
        width: 100%;
        height: auto;
        order: 2;
    }
    .warehouse-detail__image {
        height: 239px;
        border-radius: 8px;
    }
    .warehouse-detail__info {
        flex: 1 1 auto;
        order: 1;
        gap: 12px;
    }
    .warehouse-detail__title {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.265;
    }
    .warehouse-detail__details {
        gap: 8px;
    }
    .warehouse-detail__details p {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
    }
    .warehouse-detail__details p:not(:first-child) {
        margin-top: 8px;
    }
    .warehouse-detail__details ul {
        gap: 8px;
    }
    .warehouse-detail__details ul li {
        font-size: 14px;
        line-height: 1.4;
        padding-left: 24px;
    }
    .warehouse-detail__info-cards {
        position: static;
        flex-direction: row;
        gap: 20px;
        margin: 20px auto 0;
        max-width: 390px;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0;
        display: block;
        overflow: visible;
    }
    .warehouse-detail .slick-dotted.slick-slider {
        margin: 20px auto 0;
        max-width: 390px;
    }
    .warehouse-detail .slick-slide {
        padding: 0 20px;
    }
    .warehouse-detail .slick-list {
        margin: 0 -20px;
    }
    .warehouse-detail__card {
        display: flex !important;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(16.6px);
        box-shadow: 7px 10px 20px 0px rgba(231, 237, 239, 0.8);
        border-radius: 8px;
        padding: 16px;
        gap: 12px;
        max-width: 100%;
        min-height: 184px;
    }
    .warehouse-detail__card p {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
    }
    .warehouse-detail__card p.card-value {
        font-size: 32px;
        font-weight: 600;
        line-height: 1;
        display: flex;
        align-items: baseline;
        gap: 4px;
    }
    .warehouse-detail__card p.card-value .number {
        background: linear-gradient(180deg, #4858EF 0%, #1BB5EC 63%, #D8F5FF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .warehouse-detail__card p.card-value sup {
        font-size: 55%;
        top: -0.7em;
    }
    .warehouse-detail__card ul {
        gap: 12px;
    }
    .warehouse-detail__card ul li {
        font-size: 14px;
        line-height: 1.4;
        padding-left: 24px;
    }
    .warehouse-detail__card ul li::before {
        width: 14px;
        height: 14px;
    }
    .warehouse-detail__card .card-divider {
        margin: 0 0;
    }
    .warehouse-detail .slick-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 4px;
        margin-top: 20px;
        padding: 0;
        list-style: none;
        max-width: 430px;
    }
    .warehouse-detail .slick-dots li {
        width: auto;
        height: auto;
        margin: 0;
        padding: 0;
    }
    .warehouse-detail .slick-dots li button {
        width: 8px;
        height: 8px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #E8EEF0;
        font-size: 0;
        line-height: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .warehouse-detail .slick-dots li button:before {
        display: none;
    }
    .warehouse-detail .slick-dots li.slick-active button {
        width: 36px;
        height: 8px;
        border-radius: 499.5px;
        background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    }
}
/*# sourceMappingURL=warehouse-detail.css.map */
.warehouse-feature {
    position: relative;
    padding: 72px 0;
}
@media (max-width: 991.98px) {
    .warehouse-feature {
        padding: 40px 0;
    }
}
.warehouse-feature__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}
.warehouse-feature__background-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.warehouse-feature__background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.1;
}
.warehouse-feature__gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgb(240, 248, 255) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.warehouse-feature__gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 144px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(240, 248, 255) 100%);
    z-index: 1;
    pointer-events: none;
}
.warehouse-feature__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.warehouse-feature__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    color: #111832;
    margin: 0;
}
@media (max-width: 1199.98px) {
    .warehouse-feature__title {
        font-size: 40px;
    }
}
@media (max-width: 991.98px) {
    .warehouse-feature__title {
        font-size: 36px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-feature__title {
        font-size: 32px;
    }
}
.warehouse-feature__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
@media (max-width: 1199.98px) {
    .warehouse-feature__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 991.98px) {
    .warehouse-feature__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }
}
.warehouse-feature__grid .warehouse-feature__item {
    border-right: 1px solid #00529c;
}
.warehouse-feature__grid .warehouse-feature__item:nth-child(3n) {
    border-right: none;
}
.warehouse-feature__grid .warehouse-feature__item:nth-child(n+4) {
    border-top: 1px solid #00529c;
}
@media (max-width: 1199.98px) {
    .warehouse-feature__grid .warehouse-feature__item:nth-child(3n) {
        border-right: 1px solid #00529c;
    }
    .warehouse-feature__grid .warehouse-feature__item:nth-child(2n) {
        border-right: none;
    }
    .warehouse-feature__grid .warehouse-feature__item:nth-child(1), .warehouse-feature__grid .warehouse-feature__item:nth-child(2) {
        border-top: none;
    }
    .warehouse-feature__grid .warehouse-feature__item:nth-child(n+3) {
        border-top: 1px solid #00529c;
    }
}
@media (max-width: 991.98px) {
    .warehouse-feature__grid .warehouse-feature__item {
        border-right: none;
        border-top: none;
        border-bottom: none;
    }
    .warehouse-feature__grid .warehouse-feature__item:nth-child(1) {
        border-top: none;
    }
    .warehouse-feature__grid .warehouse-feature__item:last-child {
        border-bottom: none;
        display: flex !important;
    }
}
.warehouse-feature__controls {
    display: none;
}
@media (max-width: 991.98px) {
    .warehouse-feature__controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}
.warehouse-feature__control {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: #E8EEF0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.warehouse-feature__control svg {
    width: 20px;
    height: 20px;
    color: #111832;
    stroke-width: 1.6px;
}
.warehouse-feature__control:hover {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.warehouse-feature__control:hover svg {
    color: #FFFFFF;
}
.warehouse-feature__control.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.warehouse-feature__control.slick-disabled:hover {
    background: #E8EEF0;
}
.warehouse-feature__control.slick-disabled:hover svg {
    color: #111832;
}
.warehouse-feature .slick-dotted.slick-slider {
    margin: 0;
}
.warehouse-feature .slick-dots {
    position: relative;
    bottom: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 0 0 auto;
}
.warehouse-feature .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.warehouse-feature .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #FFFFFF;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.warehouse-feature .slick-dots li button:before {
    display: none;
}
.warehouse-feature .slick-dots li.slick-active button {
    width: 36px;
    height: 8px;
    border-radius: 499.5px;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.warehouse-feature__item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
}
@media (max-width: 1199.98px) {
    .warehouse-feature__item {
        padding: 32px 20px;
    }
}
@media (max-width: 991.98px) {
    .warehouse-feature__item {
        padding: 28px 16px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-feature__item {
        padding: 24px 0;
        gap: 20px;
    }
}
.warehouse-feature__icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media (max-width: 767.98px) {
    .warehouse-feature__icon {
        width: 60px;
        height: 60px;
    }
}
.warehouse-feature__icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.warehouse-feature__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 767.98px) {
    .warehouse-feature__info {
        gap: 12px;
    }
}
.warehouse-feature__info h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: #111832;
    margin: 0;
}
@media (max-width: 991.98px) {
    .warehouse-feature__info h3 {
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-feature__info h3 {
        font-size: 18px;
    }
}
.warehouse-feature__info p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #45464a;
    margin: 0;
}
@media (max-width: 991.98px) {
    .warehouse-feature__info p {
        font-size: 15px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-feature__info p {
        font-size: 14px;
    }
}
/*# sourceMappingURL=warehouse-feature.css.map */
.warehouse-infra {
    padding: 40px 0 96px;
}
@media (max-width: 991.98px) {
    .warehouse-infra {
        padding: 40px 0;
    }
}
@media (max-width: 767.98px) {
    .warehouse-infra {
        padding: 40px 0;
    }
}
.warehouse-infra__wrapper {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
@media (max-width: 991.98px) {
    .warehouse-infra__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
}
.warehouse-infra__content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 40px;
    min-height: 500px;
}
@media (max-width: 991.98px) {
    .warehouse-infra__content {
        padding-bottom: 0;
        min-height: auto;
        width: 100%;
        gap: 0;
    }
}
@media (max-width: 767.98px) {
    .warehouse-infra__content {
        gap: 0;
    }
}
.warehouse-infra__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 991.98px) {
    .warehouse-infra__text {
        gap: 12px;
        text-align: center;
    }
}
@media (max-width: 767.98px) {
    .warehouse-infra__text {
        gap: 12px;
    }
}
.warehouse-infra__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: #111832;
    margin: 0;
}
@media (max-width: 991.98px) {
    .warehouse-infra__title {
        font-size: 32px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-infra__title {
        font-size: 32px;
    }
}
.warehouse-infra__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #45464a;
    margin: 0;
    max-width: 400px;
}
@media (max-width: 991.98px) {
    .warehouse-infra__description {
        max-width: 100%;
        text-align: left;
    }
}
@media (max-width: 767.98px) {
    .warehouse-infra__description {
        font-size: 14px;
        line-height: 1.4;
    }
}
.warehouse-infra__controls {
    display: flex;
    align-items: center;
    gap: 4px;
}
@media (max-width: 991.98px) {
    .warehouse-infra__controls {
        display: none;
    }
}
.warehouse-infra__mobile-controls {
    display: none;
}
@media (max-width: 991.98px) {
    .warehouse-infra__mobile-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 0;
        width: 100%;
    }
}
.warehouse-infra .slick-dotted.slick-slider {
    margin: 0;
}
.warehouse-infra__mobile-control {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: #E8EEF0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.warehouse-infra__mobile-control svg {
    width: 20px;
    height: 20px;
    color: #111832;
    stroke-width: 1.6px;
}
.warehouse-infra__mobile-control:hover {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.warehouse-infra__mobile-control:hover svg {
    color: #FFFFFF;
}
.warehouse-infra__mobile-control.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.warehouse-infra__mobile-control.slick-disabled:hover {
    background: #E8EEF0;
}
.warehouse-infra__mobile-control.slick-disabled:hover svg {
    color: #111832;
}
.warehouse-infra__mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}
.warehouse-infra__control {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #e8eef0;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111832;
    transition: all 0.3s ease;
    padding: 8px;
}
.warehouse-infra__control svg {
    width: 20px;
    height: 20px;
    display: block;
}
.warehouse-infra__control:hover:not(.slick-disabled) {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    color: #ffffff;
}
.warehouse-infra__control.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.warehouse-infra__slider {
    display: flex;
    gap: 40px;
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .warehouse-infra__slider {
        width: 100%;
        gap: 0;
    }
}
.warehouse-infra__slider .slick-slide {
    padding: 0 20px;
}
.warehouse-infra__slider .slick-slide:nth-child(odd) {
    padding-bottom: 40px;
}
@media (max-width: 991.98px) {
    .warehouse-infra__slider .slick-slide:nth-child(odd) {
        padding-bottom: 0;
    }
}
.warehouse-infra__slider .slick-slide:nth-child(even) {
    padding-top: 40px;
}
@media (max-width: 991.98px) {
    .warehouse-infra__slider .slick-slide:nth-child(even) {
        padding-top: 0;
    }
}
@media (max-width: 991.98px) {
    .warehouse-infra__slider .slick-slide {
        padding: 0;
    }
}
.warehouse-infra__slide {
    width: 400px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    outline: none;
}
@media (max-width: 991.98px) {
    .warehouse-infra__slide {
        width: 335px;
        margin: 0 auto;
        border-radius: 13.4px;
    }
}
.warehouse-infra__slide-image {
    width: 400px;
    height: 500px;
    position: relative;
}
@media (max-width: 1319px) {
    .warehouse-infra__slide-image {
        width: 500px;
    }
}
@media (max-width: 1199.98px) {
    .warehouse-infra__slide-image {
        width: 450px;
    }
}
@media (max-width: 991.98px) {
    .warehouse-infra__slide-image {
        width: 100%;
        height: 418.75px;
    }
}
.warehouse-infra__slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.warehouse-infra__slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(71, 71, 71, 0.6) 55%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
}
@media (max-width: 991.98px) {
    .warehouse-infra__slide-caption {
        padding: 26.8px 13.4px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-infra__slide-caption {
        padding: 26.8px 13.4px;
    }
}
.warehouse-infra__slide-caption span {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.2;
    color: #ffffff;
}
@media (max-width: 991.98px) {
    .warehouse-infra__slide-caption span {
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-infra__slide-caption span {
        font-size: 20px;
    }
}
.warehouse-infra__mobile-dots .slick-dots {
    position: static;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 0 0 auto;
}
.warehouse-infra__mobile-dots .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.warehouse-infra__mobile-dots .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #E8EEF0;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.warehouse-infra__mobile-dots .slick-dots li button:before {
    display: none;
}
.warehouse-infra__mobile-dots .slick-dots li.slick-active button {
    width: 36px;
    height: 8px;
    border-radius: 499.5px;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.warehouse-infra__slider .slick-dots {
    display: none !important;
}
/*# sourceMappingURL=warehouse-infra.css.map */
.warehouse-other {
    padding: 0 0 72px 0;
}
@media (max-width: 1199.98px) {
    .warehouse-other {
        padding: 40px 0;
    }
}
.warehouse-other__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    color: #111832;
    margin: 0 0 40px;
}
@media (max-width: 1199.98px) {
    .warehouse-other__title {
        font-size: 32px;
        margin-bottom: 32px;
        font-weight: 500;
        text-align: center;
    }
}
@media (max-width: 767.98px) {
    .warehouse-other__title {
        font-size: 32px;
        margin-bottom: 32px;
    }
}
.warehouse-other__content {
    display: flex;
    gap: 40px;
}
@media (max-width: 1199.98px) {
    .warehouse-other__content {
        gap: 24px;
        flex-wrap: nowrap;
        margin: 0 -20px 0 !important;
    }
}
@media (max-width: 767.98px) {
    .warehouse-other__content {
        flex-direction: column;
        gap: 20px;
    }
}
.warehouse-other__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 290px;
    flex-shrink: 0;
    height: fit-content;
    cursor: pointer;
    transition: all 0.4s ease;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card {
        width: 100%;
        max-width: none;
        flex-shrink: 1;
        display: flex !important;
    }
}
@media (max-width: 767.98px) {
    .warehouse-other__card {
        width: 100%;
        max-width: 100%;
    }
}
.warehouse-other__card .warehouse-other__card-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card .warehouse-other__card-content {
        opacity: 1;
        max-height: none;
        pointer-events: auto;
    }
}
.warehouse-other__card .warehouse-other__card-label {
    opacity: 1;
    max-height: 50px;
    transition: all 0.4s ease;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card .warehouse-other__card-label {
        display: none;
    }
}
.warehouse-other__card--expanded {
    width: 620px;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card--expanded {
        width: 100%;
    }
}
.warehouse-other__card--expanded .warehouse-other__card-content {
    opacity: 1;
    max-height: 200px;
    pointer-events: auto;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card--expanded .warehouse-other__card-content {
        max-height: none;
    }
}
.warehouse-other__card--expanded .warehouse-other__card-label {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card--expanded .warehouse-other__card-label {
        display: none;
    }
}
.warehouse-other__card-image {
    width: 100%;
    height: 348px;
    border-radius: 8px;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card-image {
        height: 188.44px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-other__card-image {
        height: 188.44px;
    }
}
.warehouse-other__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.warehouse-other__card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 144px;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card-content {
        height: auto;
        gap: 16px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-other__card-content {
        height: auto;
        gap: 16px;
    }
}
.warehouse-other__card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card-text {
        gap: 8px;
    }
}
.warehouse-other__card-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.265;
    color: #111832;
    margin: 0;
}
@media (max-width: 1199.98px) {
    .warehouse-other__card-title {
        font-size: 20px;
    }
}
@media (max-width: 767.98px) {
    .warehouse-other__card-title {
        font-size: 20px;
    }
}
.warehouse-other__card-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #45464a;
    margin: 0;
}
@media (max-width: 767.98px) {
    .warehouse-other__card-description {
        font-size: 14px;
    }
}
.warehouse-other__card-link a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.warehouse-other__card-link a span {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.265;
    color: #111832;
    transition: color 0.3s ease;
}
.warehouse-other__card-link a:hover .warehouse-other__link-icon {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.warehouse-other__card-link a:hover .warehouse-other__link-icon svg {
    color: #ffffff;
}
.warehouse-other__link-icon {
    width: 28px;
    height: 28px;
    background: #e8eef0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 6px;
    transition: all 0.3s ease;
}
.warehouse-other__link-icon svg {
    width: 16px;
    height: 16px;
    color: #111832;
    transition: color 0.3s ease;
}
.warehouse-other__card-label span {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.265;
    color: #111832;
    opacity: 0.5;
}
@media (max-width: 767.98px) {
    .warehouse-other__card-label span {
        font-size: 14px;
    }
}
.warehouse-other .slick-slide {
    padding: 0 20px;
}
.warehouse-other__mobile-controls {
    display: none;
}
@media (max-width: 1199.98px) {
    .warehouse-other__mobile-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 32px;
    }
}
.warehouse-other__mobile-control {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: #E8EEF0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.warehouse-other__mobile-control svg {
    width: 20px;
    height: 20px;
    color: #111832;
    stroke-width: 1.6px;
}
.warehouse-other__mobile-control:hover {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
.warehouse-other__mobile-control:hover svg {
    color: #FFFFFF;
}
.warehouse-other__mobile-control.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.warehouse-other__mobile-control.slick-disabled:hover {
    background: #E8EEF0;
}
.warehouse-other__mobile-control.slick-disabled:hover svg {
    color: #111832;
}
.warehouse-other__mobile-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}
.warehouse-other__mobile-dots .slick-dots {
    position: static;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 0 0 auto;
}
.warehouse-other__mobile-dots .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}
.warehouse-other__mobile-dots .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #E8EEF0;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.warehouse-other__mobile-dots .slick-dots li button:before {
    display: none;
}
.warehouse-other__mobile-dots .slick-dots li.slick-active button {
    width: 36px;
    height: 8px;
    border-radius: 499.5px;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
}
/*# sourceMappingURL=warehouse-other.css.map */
