.section-white {
    background: #ffffff;
}

.section-title {
    margin: 0;
    color: #232323;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
    text-transform: capitalize;
}

.section-title--light {
    color: #ffffff;
}

.hero,
.hero-swiper,
.hero-slide {
    width: 100%;
    height: 672px;
}

.hero-slide {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slide__shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    padding-top: 204px;
    color: #ffffff;
}

.hero-slide__content h1 {
    max-width: 1000px;
    margin: 0;
    color: #ffffff;
    font-family: 'CustomFont', Arial, Helvetica, sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    text-transform: uppercase;
}

.hero-slide__content p {
    margin: 26px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 26px;
}

.hero-slide__content a {
    width: 199px;
    height: 50px;
    margin-top: 30px;
    border-radius: 30px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0567cc;
    font-size: 17px;
    font-weight: 700;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.hero-slide__content a:hover,
.hero-slide__content a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.hero-pagination {
    position: absolute;
    z-index: 5;
    bottom: 29px !important;
    left: 0;
    width: 100%;
    text-align: center;
}

.hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: #000000;
    opacity: 0.2;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #0567cc;
    opacity: 1;
}

.hero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 48px;
    height: 48px;
    padding: 13px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    transform: translateY(-50%);
    transition: background-color 180ms ease;
}

.hero-arrow img {
    width: 22px;
    height: 22px;
}
.hero-arrow:hover,
.hero-arrow:focus-visible {
    background: rgba(0, 0, 0, 0.55);
}
.hero-arrow--prev {
    left: 30px;
}
.hero-arrow--next {
    right: 30px;
}
.hero-arrow--prev img {
    transform: rotate(-90deg);
}
.hero-arrow--next img {
    transform: rotate(90deg);
}

.category-section {
    min-height: 646px;
    padding-top: 70px;
}

.category-panel {
    margin-top: 44px;
    padding: 20px;
    min-height: 436px;
    background: #0567cc;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.category-card {
    position: relative;
    min-width: 0;
    height: 191px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 136px minmax(0, 1fr);
    overflow: hidden;
}

.category-card h3 {
    align-self: center;
    margin: 0;
    padding: 0 20px;
    color: #242531;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:hover img,
.category-card:focus-visible img {
    transform: scale(1.04);
}

.about-section {
    min-height: 595px;
    padding-top: 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 648px minmax(0, 1fr);
    gap: 79px;
    align-items: center;
}

.about-copy {
    height: 515px;
    padding-top: 40px;
}

.about-copy h2 {
    margin: 0;
    color: #0567cc;
    font-size: 40px;
    font-weight: 700;
    line-height: 46px;
}

.about-copy__text {
    height: 305px;
    padding-top: 25px;
    overflow: hidden;
    color: #666666;
    font-size: 16px;
    line-height: 28px;
}

.about-copy__text p {
    margin: 0;
}

.about-copy__text p:nth-child(n + 3) {
    display: none;
}

.outline-button {
    width: 152px;
    height: 52px;
    margin-top: 32px;
    border: 2px solid #0567cc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0567cc;
    font-size: 16px;
    transition:
        background 180ms ease,
        color 180ms ease;
}

.outline-button:hover,
.outline-button:focus-visible {
    background: #0567cc;
    color: #ffffff;
}

.about-image {
    height: 535px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-image:hover img {
    transform: scale(1.03);
}

.stats-section {
    min-height: 206px;
    margin-top: 40px;
    background: rgba(5, 103, 204, 0.11);
}

.stats-grid {
    height: 206px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
}

.stat-item {
    min-width: 0;
    display: grid;
    grid-template-columns: 80px max-content;
    grid-template-rows: 80px 26px;
    align-items: center;
    align-content: center;
    justify-content: center;
    column-gap: 8px;
}

.stat-item__icon {
    grid-column: 1;
    grid-row: 1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.stat-item__icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.stat-item div {
    display: contents;
}

.stat-item strong {
    grid-column: 2;
    grid-row: 1;
    color: #28435f;
    font-size: 24px;
    line-height: 28px;
    white-space: nowrap;
}

.stat-item__label {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
    color: #28435f;
    font-size: 16px;
    line-height: 18px;
    white-space: nowrap;
}

.products-section {
    min-height: 1051px;
    padding-top: 70px;
}

.product-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 20px;
}

.product-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #ededed;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.product-card__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f7f7;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card h3 {
    min-height: 59px;
    margin: 0;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    font-size: 15px;
    font-weight: 400;
    line-height: 21px;
    text-align: center;
}

.product-card:hover,
.product-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.product-card:hover img {
    transform: scale(1.035);
}

.advantages-section {
    position: relative;
    min-height: 582px;
    padding-top: 30px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.advantages-section__overlay {
    position: absolute;
    inset: 30px 0 0;
    background: rgba(0, 38, 77, 0.77);
}

.advantages-content {
    position: relative;
    z-index: 1;
    padding-top: 70px;
}

.advantages-grid {
    margin-top: 58px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.advantage-item {
    text-align: center;
    color: #ffffff;
}
.advantage-item__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.advantage-item__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.advantage-item h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.advantage-item p {
    max-width: 396px;
    margin: 14px auto 0;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
}

.certificates-section {
    height: auto;
    min-height: 805px;
    padding: 40px 0;
    background-color: #ffffff;
    background-image: url("../images/advantages-bg.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.certificates-section > .section-title {
    padding: 40px 0;
}

.certificates-swiper {
    width: 100%;
    height: auto;
    margin: 12px 0 0;
    padding: 0;
    overflow: hidden;
}

.certificates-swiper .swiper-wrapper {
    padding-bottom: 30px;
}

.certificate-slide {
    position: relative;
    width: 18%;
    height: auto;
    margin: 40px 0;
    padding: 20px 0;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
    opacity: 0.5;
    transition: transform 300ms ease, opacity 300ms ease;
}

.certificate-slide img {
    position: relative;
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.certificate-slide.swiper-slide-active {
    transform: scale(1.1);
    opacity: 1;
}

.certificates-pagination {
    position: absolute;
    z-index: 5;
    left: 0;
    width: 100%;
    bottom: 25px !important;
    text-align: center;
}

.certificates-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background: #000000;
    opacity: 0.2;
}

.certificates-pagination .swiper-pagination-bullet-active {
    background: #0567cc;
    opacity: 1;
}

.applications-section {
    height: 646px;
    min-height: 646px;
    padding-top: 80px;
    overflow: hidden;
}

.applications-section > .section-title {
    width: min(calc(100% - 48px), 1440px);
    margin: 0 auto;
    text-align: left;
}

.applications-swiper {
    width: 100%;
    height: 480px;
    margin-top: 38px;
}

.application-card {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.application-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 47, 84, 0.6) 29%,
        rgba(11, 47, 84, 0) 49%
    );
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.application-card span {
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 48px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    transition: all 0.6s;
}

.application-card:hover img {
    transform: scale(1.04);
}

.application-card:hover span {
  transform: translateY(-15px);
}

.news-section {
    min-height: 610px;
    margin-bottom: 87px;
    padding-top: 40px;
}

.news-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, 432px);
    justify-content: space-around;
}

.news-card {
    min-width: 0;
    height: 484px;
    background: #f7f7f7;
    overflow: hidden;
}
.news-card__image {
    display: block;
    height: 294px;
    overflow: hidden;
}
.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms var(--ease);
}
.news-card:hover .news-card__image img {
    transform: scale(1.035);
}

.news-card:hover h3 a{
  color: #0567cc;
}
.news-card__body {
    padding: 20px 15px 15px;
}
.news-card h3 {
    height: 64px;
    margin: 0;
    color: #101325;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    overflow: hidden;
    transition: all 0.6s;
}
.news-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
     transition: all 0.6s;
}
.news-card p {
    height: 48px;
    margin: 15px 0 0;
    color: #312e39;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news-card time {
    display: block;
    margin-top: 10px;
    color: #888888;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 15px;
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 34px;
        line-height: 42px;
    }
    .hero,
    .hero-swiper,
    .hero-slide {
        height: 560px;
    }
    .hero-slide__content {
        padding-top: 160px;
    }
    .hero-slide__content h1 {
        max-width: 760px;
        font-size: 44px;
        line-height: 53px;
    }
    .category-section,
    .about-section,
    .products-section,
    .advantages-section,
    .certificates-section,
    .applications-section,
    .news-section {
        min-height: 0;
    }
    .category-section {
        padding: 60px 0;
    }
    .category-panel {
        min-height: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-section {
        padding: 60px 0;
    }
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .about-copy {
        height: auto;
        padding-top: 0;
    }
    .about-copy__text {
        height: auto;
        max-height: 305px;
    }
    .about-image {
        height: 480px;
    }
    .stats-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .stat-item {
        grid-template-columns: 72px max-content;
        grid-template-rows: 72px 24px;
        column-gap: 8px;
    }
    .stat-item__icon {
        width: 72px;
        height: 72px;
    }
    .stat-item__icon img {
        width: 44px;
        height: 44px;
    }
    .stat-item__label {
        text-align: left;
    }
    .products-section {
        padding: 60px 0 76px;
    }
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .advantages-section {
        padding: 30px 0 80px;
    }
    .advantages-content {
        padding-top: 60px;
    }
    .advantages-grid {
        gap: 24px;
        margin-top: 50px;
    }
    .certificates-section {
        height: auto;
        padding: 40px 0;
    }
    .certificates-swiper {
        width: 100%;
        height: auto;
        margin: 12px 0 0;
    }
    .applications-section {
        height: auto;
        padding-top: 60px;
    }
    .applications-swiper {
        height: 420px;
        margin-top: 34px;
    }
    .application-card {
        height: 420px;
    }
    .news-section {
        margin-bottom: 60px;
        padding-top: 60px;
    }
    .news-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
    .news-card {
        height: auto;
    }
    .news-card__image {
        height: 220px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 28px;
        line-height: 36px;
    }
    .hero,
    .hero-swiper,
    .hero-slide {
        height: 520px;
    }
    .hero-slide {
        background-position: 58% center;
    }
    .hero-slide__shade {
        background: rgba(0, 0, 0, 0.22);
    }
    .hero-slide__content {
        padding-top: 132px;
    }
    .hero-slide__content h1 {
        max-width: 330px;
        font-size: 34px;
        line-height: 42px;
    }
    .hero-slide__content p {
        max-width: 320px;
        margin-top: 18px;
        font-size: 16px;
        line-height: 24px;
    }
    .hero-slide__content a {
        width: 176px;
        height: 46px;
        margin-top: 25px;
        font-size: 15px;
    }
    .hero-arrow {
        display: none;
    }
    .category-section {
        padding: 48px 0;
    }
    .category-panel {
        margin-top: 30px;
        padding: 12px;
        gap: 12px;
        grid-template-columns: 1fr;
    }
    .category-card {
        height: 142px;
        grid-template-columns: 112px minmax(0, 1fr);
    }
    .category-card h3 {
        padding: 0 14px;
        font-size: 16px;
        line-height: 20px;
    }
    .about-section {
        padding: 48px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .about-copy h2 {
        font-size: 30px;
        line-height: 38px;
    }
    .about-copy__text {
        max-height: none;
        padding-top: 18px;
        font-size: 15px;
        line-height: 26px;
    }
    .outline-button {
        margin-top: 24px;
    }
    .about-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .stats-section {
        min-height: 0;
        margin-top: 0;
        padding: 22px 0 24px;
    }
    .stats-grid {
        height: auto;
        min-height: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 36px 10px;
    }
    .stat-item:last-child {
        grid-column: auto;
    }
    .stat-item {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: 64px auto auto;
        justify-items: center;
        align-content: start;
        column-gap: 0;
        row-gap: 8px;
    }
    .stat-item__icon {
        grid-column: 1;
        grid-row: 1;
        width: 64px;
        height: 64px;
    }
    .stat-item__icon img {
        width: 40px;
        height: 40px;
    }
    .stat-item strong {
        grid-column: 1;
        grid-row: 2;
        font-family: 'CustomFont', Arial, Helvetica, sans-serif;
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }
    .stat-item__label {
        grid-column: 1;
        grid-row: 3;
        align-self: start;
        width: 100%;
        max-width: 112px;
        min-height: 40px;
        font-family: 'CustomFont', Arial, Helvetica, sans-serif;
        font-size: 14px;
        line-height: 20px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
    }
    .products-section {
        padding: 48px 0 60px;
    }
    .product-grid {
        margin-top: 30px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }
    .product-card h3 {
        min-height: 66px;
        padding: 12px 8px;
        font-size: 13px;
        line-height: 18px;
    }
    .advantages-section {
        padding: 30px 0 60px;
    }
    .advantages-section__overlay {
        inset: 0;
    }
    .advantages-content {
        padding-top: 20px;
    }
    .advantages-grid {
        margin-top: 42px;
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .advantage-item__icon {
        width: 104px;
        height: 104px;
    }
    .advantage-item__icon img {
        width: 52px;
        height: 52px;
    }
    .advantage-item p {
        max-width: 420px;
        margin-top: 14px;
    }
    .certificates-section {
        height: auto;
        padding: 40px 0;
    }
    .certificates-section > .section-title {
        padding: 20px 0;
    }
    .certificates-swiper {
        height: auto;
        margin: 12px 0 0;
    }
    .applications-section {
        padding-top: 48px;
    }
    .applications-section > .section-title {
        width: calc(100% - 40px);
    }
    .applications-swiper {
        height: auto;
        margin-top: 30px;
        overflow: visible;
    }
    .applications-swiper .swiper-wrapper {
        display: block;
        transform: none !important;
    }
    .application-card {
        width: 100%;
        height: 200px;
        margin-bottom: 12px;
        aspect-ratio: auto;
        display: block;
    }
    .application-card:last-child { margin-bottom: 0; }
    .application-card span {
        left: 20px;
        bottom: 28px;
        font-size: 18px;
    }
    .news-section {
        margin-bottom: 48px;
        padding-top: 48px;
    }
    .news-grid {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .news-card {
        height: auto;
    }
    .news-card__image {
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 420px) {
    .hero-slide__content h1 {
        font-size: 30px;
        line-height: 38px;
    }
    .category-card {
        height: 132px;
        grid-template-columns: 105px minmax(0, 1fr);
    }
}
