.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 */
.infra-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 60px;
    padding: 72px 0 0 0;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}
.infra-slide .container {
    margin: 0 auto;
    width: 100%;
}
.infra-slide__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 60px;
    width: 100%;
}
.infra-slide__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    width: 100%;
}
.infra-slide__description {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.37em;
    color: #111832;
    margin: 0;
    max-width: 1060px;
}
.infra-slide__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 60px;
    width: 100%;
}
.infra-slide__tabs-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
}
.infra-slide__tabs-wrapper--hide-nav .infra-slide__tabs-slider-prev,
.infra-slide__tabs-wrapper--hide-nav .infra-slide__tabs-slider-next {
    display: none !important;
}
.infra-slide__tabs-slider-prev, .infra-slide__tabs-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #111832;
    z-index: 10;
}
.infra-slide__tabs-slider-prev:hover, .infra-slide__tabs-slider-next:hover {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    color: #ffffff;
}
.infra-slide__tabs-slider-prev:disabled, .infra-slide__tabs-slider-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.infra-slide__tabs-slider-prev:disabled:hover, .infra-slide__tabs-slider-next:disabled:hover {
    background: #ffffff;
    color: #111832;
}
.infra-slide__tabs-slider-prev svg, .infra-slide__tabs-slider-next svg {
    display: block;
}
.infra-slide__tabs-slider-prev {
    left: 0;
}
.infra-slide__tabs-slider-next {
    right: 0;
}
.infra-slide__tabs-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #1bb5ec;
    background: #ffffff;
    color: #1bb5ec;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}
.infra-slide__tabs-nav:disabled {
    opacity: 0.4;
    cursor: default;
}
.infra-slide__tabs-nav svg {
    display: block;
}
.infra-slide__tabs {
    position: relative;
    display: flex;
    align-self: stretch;
    gap: 32px;
    width: 100%;
    border-bottom: 2px solid transparent;
    overflow: visible;
    justify-content: flex-start;
    margin-left: auto;
    padding: 0 8px;
}
.infra-slide__tabs::before {
    content: "";
    position: absolute;
    width: calc(100vw - 40px);
    height: 2px;
    bottom: 0;
    left: calc(50% - 50vw + 20px);
    background: linear-gradient(90deg, transparent 0%, rgb(27, 181, 236) 15%, rgb(72, 88, 239) 85%, transparent 100%) bottom/100% 2px no-repeat;
}
.infra-slide__tabs.slick-slider {
    display: block;
}
.infra-slide__tabs--centered .slick-list {
    display: flex;
    justify-content: center;
}
.infra-slide__tabs--centered .slick-track {
    transform: none !important;
    left: auto !important;
}
.infra-slide__tabs .slick-list {
    overflow: visible;
}
.infra-slide__tabs .slick-track {
    display: flex !important;
    align-items: flex-start;
    gap: 32px;
}
.infra-slide__tabs .slick-track.no-transition {
    transition: none !important;
}
.infra-slide__tabs .slick-slide {
    display: flex;
    height: auto;
}
.infra-slide__tab {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}
.infra-slide__tab--active .infra-slide__tab-text {
    color: #ffffff;
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
    border: none;
}
.infra-slide__tab--active .infra-slide__tab-text::before {
    display: none;
}
.infra-slide__tab--active .infra-slide__tab-text::after {
    display: none;
}
.infra-slide__tab--active .infra-slide__tab-indicator {
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
}
.infra-slide__tab-text {
    padding: 11px 23px;
    background: white;
    border: 1px solid #1bb5ec;
    border-radius: 4px;
    font-weight: 500;
    width: max-content;
    font-size: 20px;
    line-height: 1.4em;
    text-align: center;
    color: #1bb5ec;
    position: relative;
    transition: all 0.3s ease;
}
.infra-slide__tab-text span {
    position: relative;
    z-index: 1;
}
.infra-slide__tab-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #1bb5ec;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}
.infra-slide__content-container {
    position: relative;
    width: 100%;
    max-width: 1282px;
    min-height: 341px;
}
.infra-slide__tab-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    min-width: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    pointer-events: none;
}
.infra-slide__tab-content--active {
    position: relative;
    height: auto;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.infra-slide__details {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    gap: 40px;
    flex: 0 0 620px;
    max-width: 620px;
    min-width: 0;
}
.infra-slide__details-column {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.infra-slide__details-column:only-child {
    flex: none;
    width: 100%;
}
.infra-slide__details p {
    font-size: 16px;
    line-height: 1.4em;
    color: #111832;
    margin: 0 0 8px 0;
    width: 100%;
}
.infra-slide__details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.infra-slide__details ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    color: #45464a;
}
.infra-slide__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_infra)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_infra' 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;
}
.infra-slide__details ul li:first-child {
    max-width: 400px;
}
.infra-slide__image-container {
    flex: 1 1 auto;
    position: relative;
    max-width: 620px;
    min-width: 0;
    min-height: 341px;
}
@media (max-width: 1199.98px) {
    .infra-slide__image-container {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }
}
.infra-slide__slider {
    width: 100%;
    position: relative;
    height: 100%;
    margin-bottom: 0 !important;
}
.infra-slide__slider .infra-slide__slide {
    width: 100%;
    height: 341px;
    outline: none;
}
.infra-slide__slider .infra-slide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.infra-slide__slider .slick-dots {
    position: absolute;
    bottom: 36px;
    left: 20px;
    display: flex !important;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
}
.infra-slide__slider .slick-dots li {
    width: 26.67px;
    height: 4px;
    margin: 0;
    padding: 0;
}
.infra-slide__slider .slick-dots li button {
    width: 100%;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 4px;
    background: #ffffff;
    opacity: 0.4;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    transition: opacity 0.3s ease;
}
.infra-slide__slider .slick-dots li button:before {
    display: none;
}
.infra-slide__slider .slick-dots li button:hover {
    opacity: 0.6;
}
.infra-slide__slider .slick-dots li.slick-active button {
    opacity: 1;
    background: #ffffff;
}
.infra-slide__slider .slick-arrow {
    display: none !important;
}
.infra-slide__slider:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 96px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(71, 71, 71, 0.4) 55%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    border-radius: 0 0 12px 12px;
    z-index: 5;
}
.infra-slide__slider-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}
.infra-slide__slider-nav button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #111832;
}
.infra-slide__slider-nav button:hover {
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    color: #ffffff;
}
.infra-slide__slider-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.infra-slide__slider-nav button:disabled:hover {
    background: #ffffff;
    color: #111832;
}
.infra-slide__slider-nav button svg {
    display: block;
}

@media (max-width: 1200px) {
    .infra-slide .container {
        max-width: 1050px;
    }
    .infra-slide__description {
        font-size: 20px;
    }
    .infra-slide__content-container {
        max-width: 1000px;
    }
    .infra-slide__details {
        flex: 1 1 auto;
        width: auto;
        max-width: none;
        min-width: 0;
    }
    .infra-slide__image-container {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
    }
    .infra-slide__tab-content {
        flex-direction: column-reverse !important;
    }
}
@media (max-width: 991px) {
    .infra-slide__content-container {
        max-width: 100%;
    }
    .infra-slide__tab-content {
        gap: 30px;
    }
    .infra-slide__image-container {
        min-height: 300px;
    }
}
@media (max-width: 768px) {
    .infra-slide {
        padding: 40px 0 0 0;
        gap: 32px;
    }
    .infra-slide__content {
        gap: 40px;
    }
    .infra-slide__header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .infra-slide__description {
        font-size: 16px;
        max-width: 100%;
        text-align: left;
    }
    .infra-slide__tabs-nav {
        width: 40px;
        height: 40px;
        align-self: flex-end;
    }
    .infra-slide__tabs {
        padding: 0 16px;
        gap: 20px;
    }
    .infra-slide__tabs .slick-track {
        gap: 20px;
    }
    .infra-slide__tab-text {
        font-size: 16px;
        white-space: nowrap;
    }
    .infra-slide__content-container {
        min-height: 0 !important;
        max-width: 100%;
    }
    .infra-slide__tab-content {
        flex-direction: column-reverse !important;
        gap: 24px;
    }
    .infra-slide__details {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex-direction: column;
        gap: 20px;
    }
    .infra-slide__image-container {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}
@media (max-width: 480px) {
    .infra-slide {
        padding: 40px 0;
    }
    .infra-slide__header {
        padding: 0 20px;
    }
    .infra-slide__description {
        font-size: 16px;
    }
    .infra-slide__tabs-nav {
        display: none;
    }
    .infra-slide__tabs-slider-prev, .infra-slide__tabs-slider-next {
        display: none;
    }
    .infra-slide__tabs {
        padding: 0 12px;
        gap: 16px;
    }
    .infra-slide__tabs .slick-track {
        gap: 16px;
    }
    .infra-slide__tab-text {
        font-size: 14px;
    }
    .infra-slide__tab-content {
        gap: 20px;
    }
    .infra-slide__details {
        gap: 16px;
    }
    .infra-slide__details p {
        font-size: 14px;
    }
    .infra-slide__details li {
        font-size: 12px;
    }
}
/*# sourceMappingURL=infra-slide.css.map */
.infra-feature {
    padding: 72px 0;
    background: #ffffff;
}
@media (max-width: 991.98px) {
    .infra-feature {
        padding: 40px 0;
    }
}
.infra-feature .container {
    margin: 0 auto;
}
.infra-feature__header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 660px;
    margin: 0 auto 72px;
}
.infra-feature__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2;
    color: #111832;
    margin: 0 0 20px;
}
@media (max-width: 991.98px) {
    .infra-feature__title {
        font-size: 36px;
    }
}
@media (max-width: 767.98px) {
    .infra-feature__title {
        font-size: 32px;
    }
}
.infra-feature__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #45464a;
    margin: 0;
    text-align: center;
}
.infra-feature__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
}
@media (max-width: 1199.98px) {
    .infra-feature__content {
        width: 100%;
    }
}
@media (max-width: 991.98px) {
    .infra-feature__content {
        gap: 32px;
    }
}
@media (max-width: 767.98px) {
    .infra-feature__content {
        gap: 24px;
    }
}
.infra-feature__row {
    display: flex;
    align-items: center;
    gap: 40px;
}
.infra-feature__row:nth-child(even) .infra-feature__item {
    flex-direction: row-reverse;
}
@media (max-width: 1199.98px) {
    .infra-feature__row {
        flex-direction: column;
        gap: 32px;
    }
    .infra-feature__row:nth-child(odd) .infra-feature__item {
        flex-direction: column-reverse;
    }
    .infra-feature__row:nth-child(even) .infra-feature__item {
        flex-direction: column-reverse;
    }
}
.infra-feature__item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}
@media (max-width: 1199.98px) {
    .infra-feature__item {
        flex-direction: column;
        gap: 32px;
    }
}
@media (max-width: 991.98px) {
    .infra-feature__item {
        gap: 24px;
    }
}
.infra-feature__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 60px;
    max-width: 400px;
    min-width: 0;
}
@media (max-width: 1199.98px) {
    .infra-feature__info {
        padding-top: 0;
        max-width: 100%;
    }
}
.infra-feature__feature-title {
    width: fit-content;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.366;
    color: #111832;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 767.98px) {
    .infra-feature__feature-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}
.infra-feature__details {
    display: flex;
    flex-direction: column;
}
.infra-feature__details p {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    color: #111832;
    margin: 0 0 8px 0;
}
.infra-feature__details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.infra-feature__details ul li {
    position: relative;
    padding-left: 24px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: #45464a;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.infra-feature__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;
}
.infra-feature__image-container {
    position: relative;
    width: 840px;
    height: 473px;
    flex-shrink: 0;
}
@media (max-width: 1199.98px) {
    .infra-feature__image-container {
        width: 100%;
        height: 400px;
        margin: 0 auto;
    }
}
@media (max-width: 991.98px) {
    .infra-feature__image-container {
        height: 320px;
    }
}
@media (max-width: 767.98px) {
    .infra-feature__image-container {
        height: 250px;
    }
}
.infra-feature__image-holder {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}
.infra-feature__image-holder img {
    max-width: none;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
/*# sourceMappingURL=infra-feature.css.map */
