.hero-banner {
    position: relative;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: linear-gradient(90deg, rgb(1, 140, 209) 0%, rgb(0, 148, 219) 13%, rgb(0, 143, 213) 25%, rgb(0, 141, 212) 38%, rgb(1, 141, 215) 50%, rgb(4, 151, 222) 75%, rgb(43, 160, 228) 88%, rgb(48, 163, 229) 94%, rgb(1, 143, 222) 100%);
}
.hero-banner__slider {
    height: 100%;
    position: relative;
}
.hero-banner__slider .slick-list,
.hero-banner__slider .slick-track {
    height: 100%;
}
.hero-banner__slider .slick-slide {
    height: 100vh;
    height: 100dvh;
}
.hero-banner__slider .slick-slide > div {
    height: 100%;
}
.hero-banner__slide {
    height: 100vh !important;
    height: 100dvh !important;
    position: relative;
    display: flex !important;
    align-items: center;
    outline: none;
}
.hero-banner__slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-banner__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-banner__slide-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
}
.hero-banner__content {
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-banner__text-wrapper {
    max-width: 762px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.hero-banner__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.hero-banner__description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
    margin: 0;
    max-width: 735px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.hero-banner__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-banner__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: 600;
    line-height: 1.366;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.hero-banner__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.hero-banner__btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6.889px;
    background: transparent;
    border: 2px solid #e8eef0;
    border-radius: 8.889px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.hero-banner__btn-icon svg {
    width: 22.22px;
    height: 22.22px;
    display: block;
}
.hero-banner__btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.hero-banner__dots {
    position: absolute;
    bottom: 40px;
    padding: 0 16px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-banner__dot-item {
    width: 144px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
    border-radius: 4px;
}
.hero-banner__dot-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: all 0.3s ease;
}
.hero-banner__dot-item:hover, .hero-banner__dot-item.slick-current {
    opacity: 1;
}
.hero-banner__dot-item:hover::before, .hero-banner__dot-item.slick-current::before {
    background: rgba(0, 0, 0, 0);
}
.hero-banner__dot-item.slick-current .hero-banner__progress {
    animation: progress 5s linear;
}
.hero-banner__dot-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-banner__dot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-banner__progress-bar {
    width: 100%;
    height: 2.4px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}
.hero-banner__progress {
    height: 100%;
    background: #ffffff;
    width: 0;
    transition: width 0.1s linear;
}
@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .hero-banner__text-wrapper {
        max-width: 90%;
    }
    .hero-banner__title {
        font-size: 40px;
    }
    .hero-banner__description {
        font-size: 20px;
        max-width: 90%;
    }
    .hero-banner__dots {
        bottom: 30px;
        gap: 8px;
    }
    .hero-banner__dot-item {
        width: 120px;
        height: 67px;
    }
}
@media (max-width: 991px) {
    .hero-banner__slide {
        align-items: flex-start;
    }
    .hero-banner__content {
        padding-top: 0;
        top: 20%;
    }
}
@media (max-width: 768px) {
    .hero-banner {
        height: 100vh;
        height: 100dvh;
    }
    .hero-banner__text-wrapper {
        max-width: 100%;
        gap: 16px;
    }
    .hero-banner__title {
        font-size: 32px;
    }
    .hero-banner__description {
        font-size: 16px;
        max-width: 100%;
    }
    .hero-banner__actions {
        align-items: flex-start;
        gap: 12px;
    }
    .hero-banner__btn {
        justify-content: center;
        background: #ffffff;
    }
    .hero-banner__btn:hover {
        background: #ffffff;
    }
    .hero-banner__btn span {
        background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .hero-banner__btn-icon {
        background: #ffffff;
    }
    .hero-banner__btn-icon svg {
        color: #4858EF;
    }
    .hero-banner__dots {
        bottom: 20px;
        gap: 6px;
        overflow-x: auto;
        padding: 0 16px;
        justify-content: flex-start;
    }
    .hero-banner__dots::-webkit-scrollbar {
        height: 0;
    }
    .hero-banner__dot-item {
        width: 100px;
        height: 56px;
        flex-shrink: 0;
    }
}
@media (max-width: 480px) {
    .hero-banner__title {
        font-size: 28px;
    }
    .hero-banner__description {
        font-size: 14px;
    }
    .hero-banner__btn {
        font-size: 13px;
        padding: 10px 14px;
        height: 36px;
    }
    .hero-banner__btn-icon {
        padding: 7px;
    }
    .hero-banner__btn-icon svg {
        width: 18px;
        height: 18px;
    }
    .hero-banner__dot-item {
        width: 80px;
        height: 45px;
    }
}
/*# sourceMappingURL=hero-banner.css.map */
.services {
    position: relative;
    padding: 72px 0;
    background: #ffffff;
    overflow: hidden;
}
.services__bg-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.services__bg-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.services__bg-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}
.services__bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.services__bg-item--active {
    opacity: 0.15;
}
.services__header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
.services__title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    color: #111832;
    margin: 0 0 20px 0;
}
.services__title span {
    font-weight: 700;
}
.services__description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #45464a;
    margin: 0;
}
.services__content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    min-height: 551px;
    position: relative;
    z-index: 2;
}
.services__left {
    width: 522px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    height: 551px;
}
.services__accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.services__item {
    border-bottom: 1px solid #e8eef0;
    padding: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.services__item--active .services__item-header .services__item-title {
    font-size: 40px;
    color: #111832;
}
.services__item--active .services__item-header .services__item-icon {
    width: 32px;
    height: 32px;
}
.services__item--active .services__item-header .services__item-icon svg {
    width: 32px;
    height: 32px;
    stroke: #111832;
    transform: rotate(180deg);
}
.services__item--active .services__item-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 24px;
}
.services__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.services__item-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    color: #818181;
    margin: 0;
    transition: all 0.3s ease;
    flex: 1;
}
.services__item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.services__item-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    stroke: #818181;
    transition: all 0.3s ease;
}
.services__item-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.services__item-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #45464a;
    margin: 0;
}
.services__item-description span {
    font-weight: 700;
    color: #1bb5ec;
}
.services__item-action {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 4px;
}
.services__item-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.366;
    color: #111832;
    padding: 11px 16px;
    background: #e8eef0;
    border-radius: 8px;
}
.services__item-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
    flex-shrink: 0;
}
.services__item-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}
.services__right {
    flex: 1;
    position: relative;
    min-height: 551px;
}
.services__bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 738px;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}
.services__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.services__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}
.services__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.services__bg--active {
    opacity: 1;
    pointer-events: auto;
}
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}
.services::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 144px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1280px) {
    .services__content {
        max-width: 100%;
        padding: 0 20px;
    }
    .services__bg-wrapper {
        width: 100%;
    }
}
@media (max-width: 992px) {
    .services__content {
        flex-direction: column;
        min-height: auto;
        max-width: 720px;
    }
    .services__left {
        width: 100%;
        padding-right: 0;
        margin-top: 20px;
        height: auto;
    }
    .services__right {
        min-height: 400px;
        width: 100%;
        order: -1;
    }
    .services__bg-wrapper {
        width: 100%;
        position: relative;
        min-height: 400px;
    }
}
@media (max-width: 768px) {
    .services {
        padding: 40px 0;
    }
    .services__header {
        margin-bottom: 20px;
    }
    .services__header .container {
        padding: 0 16px;
    }
    .services__title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .services__description {
        font-size: 14px;
    }
    .services__content {
        padding: 0 20px;
        max-width: 540px;
    }
    .services__item {
        padding: 16px 0;
    }
    .services__item--active .services__item-header .services__item-title {
        font-size: 24px;
    }
    .services__item--active .services__item-header .services__item-icon {
        width: 24px;
        height: 24px;
    }
    .services__item--active .services__item-header .services__item-icon svg {
        width: 24px;
        height: 24px;
    }
    .services__item--active .services__item-content {
        margin-top: 16px;
    }
    .services__item-title {
        font-size: 20px;
    }
    .services__item-icon {
        width: 16px;
        height: 16px;
    }
    .services__item-icon svg {
        width: 16px;
        height: 16px;
    }
    .services__right {
        min-height: 250px;
    }
    .services__bg-wrapper {
        min-height: 250px;
    }
}
@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
    .services__title {
        font-size: 32px;
    }
    .services__item--active .services__item-header .services__item-title {
        font-size: 24px;
    }
    .services__item-title {
        font-size: 18px;
    }
    .services__right {
        min-height: 250px;
    }
}
/*# sourceMappingURL=services.css.map */
.price {
    position: relative;
    padding: 72px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 568px;
    overflow: hidden;
}
.price__bg {
    position: absolute;
    top: 94px;
    left: 0;
    width: 100%;
    height: 424px;
    z-index: 0;
}
.price__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.price__bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.price__content {
    margin-left: auto;
    position: relative;
    z-index: 2;
    width: 667px;
}
.price__card {
    background: linear-gradient(180deg, rgb(16, 95, 186) 0%, rgb(38, 102, 175) 8%, rgba(46, 113, 146, 0.34) 47%, rgb(51, 106, 190) 92%, rgb(57, 98, 160) 100%);
    backdrop-filter: blur(16.6px);
    padding: 40px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 469px;
    border-radius: 12px;
}
.price__card ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.price__card ul li {
    display: flex;
    align-items: flex-start;
    padding-left: 24px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
}
.price__card 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;
}
.price__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.price__label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.price__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}
.price__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price__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: 600;
    line-height: 1.366;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.price__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.price__btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6.889px;
    background: transparent;
    border: 2px solid #e8eef0;
    border-radius: 8.889px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.price__btn-icon svg {
    width: 22.22px;
    height: 22.22px;
    display: block;
}
.price__btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

@media (max-width: 1280px) {
    .price {
        padding: 72px 0;
    }
    .price__content {
        width: 100%;
        max-width: 620px;
    }
}
@media (max-width: 1024px) {
    .price {
        padding: 60px 0;
        justify-content: center;
    }
    .price__bg {
        top: 0;
        height: 100%;
    }
    .price__bg img {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .price__content {
        width: 100%;
        max-width: 620px;
    }
}
@media (max-width: 768px) {
    .price {
        padding: 40px 0;
    }
    .price__bg {
        max-width: calc(100vw - 40px);
        width: 500px;
        left: unset;
        top: 40px;
        height: 200px;
    }
    .price__bg img {
        border-radius: 4px;
    }
    .price__content {
        padding: 160px 20px 0 20px;
    }
    .price__card {
        padding: 16px;
        background: linear-gradient(180deg, #105FBA 0%, #2666AF 7.92%, rgba(46, 113, 146, 0.7) 46.7%, #336ABE 92%, #3962A0 100%);
        gap: 20px;
        min-height: unset;
    }
    .price__card ul {
        gap: 10px;
    }
    .price__card ul li {
        font-size: 14px;
    }
    .price__header {
        gap: 4px;
    }
    .price__label {
        font-size: 12px;
    }
    .price__title {
        font-size: 28px;
    }
    .price__btn {
        padding: 11px 16px;
        font-weight: 500;
    }
}
/*# sourceMappingURL=price.css.map */
.news-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 40px;
    margin: auto;
    padding: 72px 0;
    width: 100%;
}
.news-section .container {
    position: relative;
    width: 100%;
}
.news-section__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    gap: 40px;
    width: 100%;
    margin-bottom: 40px;
}
.news-section__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.news-section__title .label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2em;
    background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    margin: 0;
}
.news-section__title h2 {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2em;
    text-align: left;
    color: #111832;
    margin: 0;
}
.news-section__button-group {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
}
.news-section__button-text {
    display: flex;
    align-items: center;
    margin-right: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25em;
    text-align: left;
    color: #00529c;
}
.news-section__button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #ffffff;
}
.news-section__content {
    position: relative;
    width: 100%;
}
.news-section__slider-container {
    width: 100%;
}
.news-section__slider-container .slider-wrapper {
    overflow: hidden;
}
.news-section__slider-container .slider-item {
    width: 100%;
    display: flex !important;
    justify-content: center;
    padding: 0 20px;
}
.news-section__news-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    flex: 1;
    padding: 8px;
    background: #ffffff;
    border-radius: 16px;
    height: 558.55px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-section__item-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    text-decoration: none;
    color: transparent;
}
.news-section__image {
    width: 100%;
    height: 243.55px;
    overflow: hidden;
    border-radius: 12px;
}
.news-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.news-section__news-item:hover .news-section__image img {
    transform: scale(1.05);
}
.news-section__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: 24px 0px;
    flex: 1;
}
.news-section__details {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 8px;
}
.news-section__date {
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4em;
    text-align: left;
    color: #45464a;
    margin: 0;
}
.news-section__date span {
    background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.news-section__news-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.25em;
    text-align: left;
    color: #111832;
    margin: 0;
    max-height: 90px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section__description {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4em;
    text-align: left;
    color: #45464a;
    margin: 12px 0 0 0;
    max-height: 60px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section__action {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;
    gap: 16px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}
.news-section__action-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.366em;
    text-align: left;
    color: #111832;
    transition: color 0.2s ease;
}
.news-section__news-item:hover .news-section__action-text {
    color: #00529c;
}
.news-section__action-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #e8eef0;
    border: 1px solid #e8eef0;
    border-radius: 8px;
    color: #111832;
    padding: 6px;
    transition: all 0.2s ease;
}
.news-section__action-icon svg {
    width: 20px;
    height: 20px;
}
.news-section__news-item:hover .news-section__action-icon {
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
    color: #ffffff;
}
.news-section__navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.news-section .slick-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e8eef0;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 3;
    position: static !important;
    transform: none !important;
}
.news-section .slick-arrow:before {
    display: none;
}
.news-section .slick-arrow:hover {
    background: #e8eef0;
}
.news-section .slick-arrow.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.news-section .slick-prev,
.news-section .slick-next {
    position: static;
}
.news-section .slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.news-section .slick-dots {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    width: fit-content;
    position: static !important;
    bottom: auto;
    list-style: none;
    padding: 0;
}
.news-section .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    display: block;
}
.news-section .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: #e8eef0;
    border: none;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    display: block;
}
.news-section .slick-dots li button:before {
    display: none;
}
.news-section .slick-dots li.slick-active button {
    width: 36px;
    border-radius: 499.5px;
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
}

@media (max-width: 1200px) {
    .news-section__title h2 {
        font-size: 36px;
    }
    .news-section__content {
        gap: 30px;
    }
}
@media (max-width: 992px) {
    .news-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 10px;
    }
    .news-section__title h2 {
        font-size: 32px;
    }
    .news-section__news-item {
        height: auto;
    }
    .news-section__info {
        gap: 20px;
    }
    .news-section__slider-container .slider-item {
        padding: 10px 20px;
    }
}
@media (max-width: 768px) {
    .news-section {
        padding: 0 0 40px;
    }
    .news-section__container {
        gap: 32px;
    }
    .news-section__news-title {
        font-size: 20px;
        max-height: 50px;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .news-section__description {
        display: none;
    }
    .news-section__image {
        height: 202px;
    }
    .news-section__info {
        padding: 20px 0;
    }
    .news-section__action {
        display: none;
    }
    .news-section__navigation-wrapper {
        margin-top: 24px;
    }
}
/*# sourceMappingURL=news.css.map */
.infrastructure {
    position: relative;
    padding: 25px 0 72px;
    overflow: hidden;
}
.infrastructure__bg {
    position: absolute;
    top: 138px;
    left: 0;
    width: 100%;
    height: 630px;
    z-index: 0;
}
.infrastructure__bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.infrastructure__bg-image {
    display: block;
}
.infrastructure__animated-icons {
    display: none;
}
@media (min-width: 992px) {
    .infrastructure__animated-icons {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
        z-index: 1;
    }
}
.infrastructure__icon-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}
.infrastructure__animated-icons--active .infrastructure__icon-layer {
    animation: moveUpContinuous 5s linear infinite;
}
.infrastructure__animated-icons--active .infrastructure__icon-layer--1 {
    top: 100%;
    animation-delay: 0s;
}
.infrastructure__animated-icons--active .infrastructure__icon-layer--2 {
    top: 100%;
    animation-delay: 1.67s;
}
.infrastructure__animated-icons--active .infrastructure__icon-layer--3 {
    top: 100%;
    animation-delay: 3.33s;
}
.infrastructure__icon {
    position: absolute;
    opacity: 1;
    transform: translateY(0);
}
.infrastructure__icon svg {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    width: 100%;
    height: 100%;
}
@keyframes moveUpContinuous {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-200%);
    }
}
.infrastructure__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}
.infrastructure__card {
    background: linear-gradient(180deg, rgb(16, 95, 186) 0%, rgb(38, 102, 175) 8%, rgba(46, 113, 146, 0.7) 47%, rgb(51, 106, 190) 92%, rgb(57, 98, 160) 100%);
    backdrop-filter: blur(16.6px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 841px;
    border-radius: 12px;
    justify-content: space-around;
}
.infrastructure__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.infrastructure__header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.infrastructure__label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.infrastructure__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.265;
    color: #ffffff;
    margin: 0;
}
.infrastructure__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.infrastructure__description p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}
.infrastructure__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.infrastructure__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;
}
.infrastructure__btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.infrastructure__btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6.889px;
    background: transparent;
    border: 2px solid #e8eef0;
    border-radius: 8.889px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.infrastructure__btn-icon svg {
    width: 22.22px;
    height: 22.22px;
    display: block;
}
.infrastructure__btn-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}
.infrastructure__stats {
    display: flex;
    flex-direction: column;
}
.infrastructure__stat-row {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #ffffff;
}
.infrastructure__stat-row:last-child {
    border-bottom: none;
}
.infrastructure__stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}
.infrastructure__stat-item > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.infrastructure__stat-item span:not(.number) {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
}
.infrastructure__stat-item > div:has(> div + div) {
    flex-direction: row;
    gap: 32px;
}
.infrastructure__stat-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}
.infrastructure__stat-number {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    display: flex;
    align-items: center;
}
.infrastructure__stat-number .number {
    font-size: 32px;
    font-weight: 600;
}
.infrastructure__stat-number > span:not(.number) {
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
}
.infrastructure__stat-number sup {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-top: -2px;
}
.infrastructure__mobile-stats {
    display: none;
}

@media (max-width: 1280px) {
    .infrastructure {
        padding: 32px 0 72px;
    }
    .infrastructure__content {
        max-width: 100%;
    }
}
@media (max-width: 1024px) {
    .infrastructure {
        padding: 32px 0 60px;
    }
    .infrastructure__bg {
        top: 0;
        height: 100%;
    }
    .infrastructure__bg img {
        width: 100%;
        height: 100%;
        margin-top: 0;
    }
    .infrastructure__content {
        max-width: 620px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .infrastructure {
        padding: 40px 0;
        min-height: auto;
    }
    .infrastructure__bg {
        position: relative;
        top: 0;
        left: 0;
        max-width: calc(100vw - 40px);
        width: 500px;
        height: 160px;
        margin: 0 auto;
        border-radius: 4px;
        overflow: hidden;
    }
    .infrastructure__bg img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 160px;
        object-fit: cover;
    }
    .infrastructure__content {
        width: 100%;
        padding: 0 20px 0 20px;
        margin-top: -40px;
        position: relative;
        z-index: 2;
    }
    .infrastructure__card {
        width: 295px;
        margin: 0 auto;
        padding: 20px;
        gap: 20px;
        min-height: auto;
        border-radius: 8px;
    }
    .infrastructure__header {
        gap: 20px;
    }
    .infrastructure__header-text {
        gap: 4px;
    }
    .infrastructure__label {
        font-size: 12px;
        font-weight: 700;
        line-height: 1.2;
    }
    .infrastructure__title {
        font-size: 28px;
        font-weight: 600;
        line-height: 1.265;
    }
    .infrastructure__description {
        gap: 20px;
    }
    .infrastructure__description p {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
    }
    .infrastructure__btn {
        padding: 11px 16px;
        font-weight: 500;
    }
    .infrastructure .infrastructure__card > .infrastructure__stats {
        display: none;
    }
    .infrastructure__mobile-stats {
        display: block;
        padding: 32px 0 0;
    }
    .infrastructure__mobile-stats .slick-track {
        display: flex;
    }
    .infrastructure__mobile-stats .infrastructure__stat-row {
        display: flex !important;
        flex-direction: row;
        gap: 20px;
        padding: 0 20px;
        border-bottom: none;
    }
    .infrastructure__mobile-stats .infrastructure__stat-item {
        flex: 1;
        padding: 0;
        gap: 20px;
    }
    .infrastructure__mobile-stats .infrastructure__stat-item:first-child {
        padding-right: 8px;
    }
    .infrastructure__mobile-stats .infrastructure__stat-item:last-child {
        padding-left: 8px;
    }
    .infrastructure__mobile-stats .infrastructure__stat-item > div {
        gap: 12px;
    }
    .infrastructure__mobile-stats .infrastructure__stat-item > div:has(> div + div) {
        gap: 12px;
    }
    .infrastructure__mobile-stats .infrastructure__stat-label {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
        color: #111832;
    }
    .infrastructure__mobile-stats .infrastructure__stat-number {
        font-size: 32px;
        font-weight: 600;
        line-height: 1;
        background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }
    .infrastructure__mobile-stats .infrastructure__stat-number .number {
        font-size: 32px;
        font-weight: 600;
    }
    .infrastructure__mobile-stats .infrastructure__stat-number > span:not(.number) {
        font-size: 32px;
        font-weight: 600;
    }
    .infrastructure__mobile-stats .infrastructure__stat-number sup {
        font-size: 20px;
        font-weight: 600;
        background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .infrastructure__mobile-stats .infrastructure__stat-item span:not(.number) {
        font-weight: 600;
        line-height: 1;
        color: #45464a;
    }
    .infrastructure__mobile-stats .slick-dots {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 4px;
        margin-top: 20px;
        padding: 0;
        list-style: none;
    }
    .infrastructure__mobile-stats .slick-dots li {
        margin: 0;
        padding: 0;
        width: 8px;
        height: 8px;
    }
    .infrastructure__mobile-stats .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;
    }
    .infrastructure__mobile-stats .slick-dots li button:before {
        display: none;
    }
    .infrastructure__mobile-stats .slick-dots li.slick-active {
        width: 36px;
        border-radius: 499.5px;
    }
    .infrastructure__mobile-stats .slick-dots li.slick-active button {
        width: 36px;
        border-radius: 499.5px;
        background: linear-gradient(270deg, #4858ef 0%, #1bb5ec 100%);
    }
}
@media (max-width: 375px) {
    .infrastructure__bg {
        width: 100%;
        max-width: 335px;
    }
    .infrastructure__content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    .infrastructure__card {
        width: 100%;
        max-width: 295px;
    }
}
/*# sourceMappingURL=infrastructure.css.map */
.achievement {
    padding: 92px 0;
    background: #ffffff;
}
.achievement .row {
    margin-left: -20px;
    margin-right: -20px;
}
.achievement__header {
    width: 100%;
    padding-bottom: 24px;
    border-bottom: 1px solid #ffffff;
}
.achievement__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    color: #111832;
    margin: 0;
    text-align: center;
}
.achievement__slider-wrapper {
    width: 100%;
    overflow: hidden;
}
.achievement__slider {
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.achievement .slick-slide {
    padding: 40px 20px;
}
.achievement__item {
    width: 400px !important;
    background: #ffffff;
    box-shadow: -8px -8px 20px 0px rgba(0, 0, 0, 0.09);
    display: flex !important;
    flex-direction: column;
    flex-shrink: 0;
    padding-bottom: 86px;
    position: relative;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.achievement__item--with-button:hover .achievement__item-content {
    transform: translateY(-32px);
}
.achievement__item--with-button:hover .achievement__item-button {
    opacity: 1;
    visibility: visible;
}
.achievement__item-image {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.achievement__item-image img {
    max-width: 210px;
    max-height: 158px;
    object-fit: contain;
    filter: drop-shadow(0px 3px 6.1px rgba(0, 0, 0, 0.15));
}
.achievement__item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px 16px;
    width: 100%;
    transition: transform 0.3s ease;
    transform: translateY(0);
}
.achievement__item-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #111832;
    margin: 0;
    text-align: center;
    width: 100%;
}
.achievement__item-year {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #45464a;
    margin: 0;
    text-align: center;
    width: 100%;
}
.achievement__item-button {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}
.achievement__item-button-text {
    color: #00529c;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.265;
    display: flex;
    align-items: center;
}
.achievement__item-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00529c;
    transition: transform 0.3s ease;
}
.achievement__item-button-icon svg {
    width: 20px;
    height: 20px;
}
.achievement__content {
    position: relative;
    width: 100%;
}
.achievement .slick-prev,
.achievement .slick-next {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.achievement .slick-prev:hover,
.achievement .slick-next:hover {
    background: rgb(242.25, 242.25, 242.25);
}
.achievement .slick-prev:before,
.achievement .slick-next:before {
    display: none;
}
.achievement .slick-prev svg,
.achievement .slick-next svg {
    width: 20px;
    height: 20px;
}
.achievement .slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}
.achievement__navigation-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
@media (max-width: 768px) {
    .achievement__navigation-wrapper {
        gap: 20px;
    }
}
.achievement .slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.achievement .slick-dots {
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    width: fit-content;
    position: static !important;
    bottom: auto;
    list-style: none;
    padding: 0;
}
@media (max-width: 991px) {
    .achievement .slick-dots {
        display: flex !important;
    }
}
.achievement .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    display: block;
}
.achievement .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: #e8eef0;
    border: none;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    display: block;
}
.achievement .slick-dots li button:before {
    display: none;
}
.achievement .slick-dots li.slick-active button {
    width: 36px;
    border-radius: 499.5px;
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
}

@media (max-width: 1200px) {
    .achievement__title {
        font-size: 40px;
    }
    .achievement__slider {
        gap: 32px;
    }
    .achievement__item {
        width: 360px !important;
    }
}
@media (max-width: 1024px) {
    .achievement__title {
        font-size: 36px;
    }
    .achievement__slider {
        gap: 28px;
    }
    .achievement__item {
        width: 340px !important;
    }
}
@media (max-width: 768px) {
    .achievement {
        padding: 40px 0;
    }
    .achievement__header {
        padding-bottom: 0px;
    }
    .achievement__title {
        font-size: 32px;
        font-weight: 600;
        text-align: left;
    }
    .achievement .slick-slide {
        padding: 32px 20px;
    }
    .achievement__slider {
        gap: 24px;
    }
    .achievement__item {
        width: 500px !important;
        padding-bottom: 76px;
    }
    .achievement__item-image {
        height: 160px;
    }
    .achievement__item-image img {
        max-width: 180px;
        max-height: 140px;
    }
    .achievement__item-content {
        padding: 10px 16px 14px;
    }
    .achievement__item-title {
        font-size: 14px;
    }
    .achievement__item-year {
        font-size: 13px;
    }
    .achievement .slick-prev,
    .achievement .slick-next {
        width: 36px;
        height: 36px;
        background: #e8eef0;
    }
    .achievement .slick-prev svg,
    .achievement .slick-next svg {
        width: 20px;
        height: 20px;
    }
}
@media (max-width: 576px) {
    .achievement__item {
        width: calc(100vw - 40px) !important;
    }
}
/*# sourceMappingURL=achievement.css.map */
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
}
@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
:root {
    --swiper-theme-color:#007aff;
    --swiper-navigation-size:44px;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-vertical > .swiper-pagination-bullets {
    right: 8px;
    left: auto;
    top: 50%;
    transform: translate3d(0, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-vertical > .swiper-scrollbar {
    right: 4px;
    top: 1%;
    width: 4px;
    height: 98%;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    transform: translate3d(0, 0, 0);
}

.swiper-horizontal > .swiper-pagination-bullets {
    bottom: 8px;
    top: auto;
    left: 0;
    width: 100%;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-horizontal > .swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}

.swiper-horizontal > .swiper-scrollbar {
    left: 1%;
    bottom: 4px;
    height: 4px;
    width: 98%;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    border: 4px solid #007aff;
    border-top-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007aff;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 44px;
    content: "next";
}

.swiper-button-prev:after {
    content: "prev";
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: 0.2;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto;
}

.clients {
    padding: 72px 0;
}
.clients__header {
    display: flex;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 40px;
}
.clients__header-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.clients__subtitle {
    font-weight: 700;
    width: fit-content;
    font-size: 16px;
    line-height: 1.2em;
    margin: 0;
    background: linear-gradient(270deg, #4858EF 0%, #1BB5EC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.clients__title {
    font-weight: 500;
    font-size: 48px;
    line-height: 1.2em;
    color: #111832;
    margin: 0;
}
.clients__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 62px;
    position: relative;
}
.clients__navigation-wrapper {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
@media (max-width: 991px) {
    .clients__navigation-wrapper {
        display: flex;
    }
}
.clients__slider-container {
    width: 100%;
}
.clients__clients {
    width: 100%;
    overflow: hidden;
}
.clients__clients .clients-swiper {
    overflow: visible;
}
.clients__clients .swiper-wrapper {
    display: flex;
    align-items: center;
}
.clients__clients .swiper-slide {
    width: fit-content;
    flex-shrink: 0;
    margin-right: 0;
}
.clients__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    width: auto;
    max-width: 250px;
    text-decoration: none;
}
.clients__logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.clients__nav {
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 768px) {
    .clients__nav {
        display: none;
    }
}
.clients__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e8eef0;
    border: none;
    border-radius: 8px;
    color: #111832;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 8px;
}
.clients__nav-btn:hover:not(:disabled) {
    background-color: rgb(216.5657894737, 226.5921052632, 229.9342105263);
}
.clients__nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    color: #80A8CD;
}
.clients__nav-btn svg {
    width: 22.22px;
    height: 22.22px;
}
.clients .swiper-pagination {
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    width: fit-content;
    position: static !important;
    bottom: auto;
    padding: 0;
}
@media (max-width: 991px) {
    .clients .swiper-pagination {
        display: flex !important;
    }
}
.clients .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #e8eef0;
    opacity: 1;
    margin: 0 !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.clients .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 36px;
    border-radius: 499.5px;
    background: linear-gradient(270deg, rgb(72, 88, 239) 0%, rgb(27, 181, 236) 100%);
}

@media (max-width: 1200px) {
    .clients__title {
        font-size: 40px;
    }
    .clients__clients .swiper-slide {
        margin-right: 60px;
    }
    .clients__logo {
        max-width: 200px;
    }
}
@media (max-width: 768px) {
    .clients {
        padding: 40px 0;
    }
    .clients__header {
        margin-bottom: 32px;
        padding-bottom: 0;
        border-bottom: none;
    }
    .clients__header-content {
        gap: 4px;
    }
    .clients__subtitle {
        font-size: 12px;
    }
    .clients__title {
        font-size: 32px;
        font-weight: 600;
    }
    .clients__content {
        gap: 32px;
    }
    .clients__slider-container {
        gap: 30px;
    }
    .clients__clients .swiper-slide {
        margin-right: 40px;
    }
    .clients__logo {
        height: 54px;
        max-width: 100%;
    }
    .clients__nav-btn {
        width: 36px;
        height: 36px;
    }
    .clients__nav-btn svg {
        width: 20px;
        height: 20px;
    }
}
/*# sourceMappingURL=clients.css.map */
