.page-header {
    position: relative;
    min-height: 96px;
    z-index: 100
}

.page-header__wrapper {
    position: fixed;
    width: 100%;
    background: #fff;
    padding: 23px 0;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 3px 7px #0000000f
}

.page-header__wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.page-header__position-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 8px;
    background-color: #07953f;
    z-index: 1
}

.page-header__toggle-button {
    padding: 5px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    margin-left: 8px;
    display: flex;
    flex-direction: column
}

.page-header__toggle-button div {
    width: 15px;
    height: 2px;
    background-color: #212121;
    margin-bottom: 3px
}

.page-header__toggle-button div:last-child {
    margin-bottom: 0
}

@media (min-width: 992px) {
    .page-header__toggle-button {
        display: none
    }
}

.page-header__navigation {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 70%;
    z-index: 100;
    flex-direction: column;
    background: #f5f5f5;
    color: #333;
    transform: translate(-100%);
    pointer-events: none;
    transition: transform .4s cubic-bezier(.7, 0, .2, 1)
}

.page-header__navigation--active {
    transform: translate(0);
    pointer-events: auto;
    box-shadow: 0 0 40px #52555a1a
}

@media (min-width: 992px) {
    .page-header__navigation {
        all: unset;
        display: block
    }
}

.page-header__navigation-list {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    padding: 0;
    margin: 0
}

@media (min-width: 992px) {
    .page-header__navigation-list {
        flex-direction: row;
        flex-wrap: wrap
    }
}

.page-header__navigation-list > li {
    font-size: 15px;
    border-top: 2px solid #e5e5e5;
    line-height: 50px
}

@media (min-width: 992px) {
    .page-header__navigation-list > li {
        border: none;
        line-height: 1.4;
        padding: 0 20px;
        font-size: 16px
    }

    .page-header__navigation-list > li.active > a, .page-header__navigation-list > li.active > .page-header__submenu-wrapper > a {
        border-bottom: 2px solid #002a6c;
        color: #002a6c;
        font-weight: 800
    }

    .page-header__navigation-list > li:hover .page-header__submenu-wrapper > a {
        border-bottom: 2px solid #002a6c
    }

    .page-header__navigation-list > li:hover > a {
        border-bottom: 2px solid #002a6c
    }

    .page-header__navigation-list > li:hover .page-header__submenu {
        visibility: visible;
        opacity: 1
    }
}

.page-header__navigation-list > li a {
    display: block;
    color: #666;
    font-weight: 400;
    line-height: 50px;
    padding-left: 20px;
    text-decoration: none
}

@media (min-width: 992px) {
    .page-header__navigation-list > li a {
        color: #212121;
        font-weight: 700;
        font-size: 16px;
        padding: 0;
        box-sizing: border-box;
        height: 100%
    }
}

.page-header__submenu {
    box-sizing: border-box;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-20px);
    transition: all .7s ease
}

.page-header__submenu.page-header__submenu--open {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0)
}

@media (min-width: 992px) {
    .page-header__submenu {
        max-height: fit-content;
        position: absolute;
        width: 100%;
        left: 0;
        top: 66%;
        z-index: 100;
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: 0 6px 5px #01010124;
        transition: all .4s ease 0s;
        transform: translate3d(0, 10px, 0);
        opacity: 0;
        visibility: hidden;
        min-height: 40px
    }
}

.page-header__submenu-list {
    list-style-type: none;
    padding: 0 0 10px;
    margin: 0
}

@media (min-width: 992px) {
    .page-header__submenu-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1440px;
        padding: 70px 15px;
        margin: 0 auto
    }
}

.page-header__submenu-list li {
    border: none;
    line-height: 35px
}

@media (min-width: 992px) {
    .page-header__submenu-list li {
        width: 20%;
        padding: 0 10px;
        box-sizing: border-box
    }

    .page-header__submenu-list li:hover > a {
        color: #002a6c;
        border: none
    }
}

.page-header__submenu-list > li > a {
    line-height: 28px;
    padding-left: 35px;
    background-image: url(/local/templates/chinacleanroom/src/images/icons/right-arrow.png);
    background-repeat: no-repeat;
    background-size: 11px 11px;
    background-position: center left 19px
}

@media (min-width: 992px) {
    .page-header__submenu-list > li > a {
        background: none;
        padding: 0
    }
}

.page-header__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #353535;
    min-height: 60px
}

@media (min-width: 992px) {
    .page-header__title-wrapper {
        display: none
    }
}

.page-header__title {
    padding-left: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700px;
    font-family: Times New Roman, Times, serif;
    margin: 0
}

.page-header__close-button {
    display: block;
    border: none;
    cursor: pointer;
    background-color: transparent;
    padding: 25px;
    min-height: 22px;
    min-width: 22px;
    position: relative
}

.page-header__close-button:before, .page-header__close-button:after {
    left: 50%;
    transform: translate(-50%);
    content: "";
    position: absolute;
    width: 17px;
    height: 2px;
    background-color: #fff
}

.page-header__close-button:before {
    transform: translate(-50%) rotate(45deg)
}

.page-header__close-button:after {
    transform: translate(-50%) rotate(-45deg)
}

.page-header__submenu-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.page-header__submenu-wrapper a {
    flex-grow: 1;
    height: 100%;
    box-sizing: border-box
}

.page-header__submenu-toggle {
    cursor: pointer;
    width: 50px;
    height: 40px;
    border: none;
    padding: 0;
    background-color: transparent;
    background-image: url(/local/templates/chinacleanroom/src/images/icons/down-arrow.png);
    background-position: center center;
    background-size: 12px 12px;
    background-repeat: no-repeat
}

@media (min-width: 992px) {
    .page-header__submenu-toggle {
        display: none
    }
}

.page-header__search-button {
    border: none;
    width: 34px;
    height: 34px;
    padding: 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

.page-header__search-button-icon {
    fill: #212121
}

.page-header__logo {
    max-width: 72px;
    width: 100%;
    text-decoration: none
}

.page-header__logo img {
    display: block;
    width: 100%;
    height: auto
}

.page-header__search {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 60px 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all .4s ease 0s;
    transform: translate3d(0, 10px, 0);
    box-shadow: 0 6px 5px #01010124
}

.page-header__search--active {
    visibility: visible;
    opacity: 1;
    max-height: 800px
}

.page-header__search .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 1100px
}

.page-header__search-wrapper {
    width: 100%
}

.page-header__search-form {
    display: flex;
    width: 100%;
    position: relative;
    margin: 0 auto;
    border: 1px solid #bebebe
}

.page-header__search-submit {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 60px;
    line-height: 60px;
    background-color: transparent;
    border: none;
    cursor: pointer
}

.page-header__search-submit-icon {
    fill: #666;
    flex-grow: 1
}

.page-header__search-input {
    border: none;
    background-color: transparent;
    flex-grow: 1;
    padding-right: 15px;
    box-sizing: border-box;
    height: 60px;
    font-size: 16px;
    font-family: inherit
}

.page-header__search-links {
    margin-top: 40px;
    width: 100%
}

.page-header__search-title {
    margin: 0 0 10px;
    font-weight: 700;
    font-size: 20px;
    color: #212121
}

.page-header__search-list {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.page-header__search-list li a {
    font-size: 16px;
    text-decoration: none;
    line-height: 40px;
    padding-left: 10px;
    color: #666;
    display: block
}

.page-header__search-list li a:hover {
    background-color: #0000000a
}

.page-footer {
    background: #002a6c;
    padding-top: 60px
}

.page-footer__picture {
    margin-bottom: 30px;
    width: 100%;
    max-width: 80px
}

@media (max-width: 768px) {
    .page-footer__picture {
        margin-left: auto;
        margin-right: auto
    }
}

.page-footer__picture img {
    display: block;
    width: 100%;
    height: auto
}

.page-footer__wrapper {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: 30px 0;
    flex-wrap: wrap
}

@media (max-width: 768px) {
    .page-footer__wrapper {
        padding: 20px 0 30px
    }
}

.page-footer__wrapper h2 {
    font-size: 22px;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 20px
}

@media (max-width: 768px) {
    .page-footer__wrapper h2 {
        font-size: 18px;
        padding-bottom: 20px;
        margin: 0 0 15px;
        text-align: center
    }
}

.page-footer__wrapper ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.page-footer__wrapper ul li {
    font-size: 15px;
    color: #ffffff80;
    line-height: 32px;
    width: 50%
}

@media (max-width: 1500px) {
    .page-footer__wrapper ul li {
        font-size: 12px;
        line-height: 30px;
        margin-bottom: 10px
    }
}

.page-footer__wrapper ul li > a {
    color: inherit;
    text-decoration: none
}

.page-footer__wrapper ul li > a:hover {
    color: #fff;
    text-decoration: underline
}

.page-footer__nav, .page-footer__products {
    width: 30%
}

@media (max-width: 992px) {
    .page-footer__nav, .page-footer__products {
        width: 50%
    }
}

@media (max-width: 768px) {
    .page-footer__nav, .page-footer__products {
        display: none
    }
}

.page-footer__contact {
    width: 40%
}

@media (max-width: 992px) {
    .page-footer__contact {
        width: 100%;
        margin-top: 20px
    }
}

.page-footer__contact p {
    margin: 0;
    font-size: 15px;
    color: #ffffff80;
    line-height: 32px
}

.page-footer__form {
    margin: 23px 0 0;
    position: relative;
    display: flex;
    align-items: center
}

.page-footer__form input {
    max-height: 64px;
    box-sizing: border-box;
    line-height: 64px;
    padding: 0 25px;
    font-size: 13px;
    background: #fff;
    font-family: inherit;
    flex-grow: 1;
    border: none
}

@media (max-width: 576px) {
    .page-footer__form input {
        flex-grow: 2
    }
}

.page-footer__form input:required + .page-footer__form-error--required {
    display: block
}

.page-footer__form input:invalid ~ .page-footer__form-error--invalid {
    display: block
}

.page-footer__form button {
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    min-width: 140px;
    border: none;
    align-self: stretch;
    background: #07953f;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-align: center
}

@media (max-width: 576px) {
    .page-footer__form button {
        min-width: 100px;
        flex-grow: 1
    }
}

.page-footer__form button:hover {
    filter: brightness(1.1)
}

.page-footer__form .sub-form-error {
    color: #a94442;
    font-size: 12px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 115%
}

.page-footer__copyright {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    color: #ffffff80;
    align-items: center;
    padding: 50px 0
}

@media (max-width: 768px) {
    .page-footer__copyright {
        padding: 0 0 25px;
        text-align: center;
        justify-content: center
    }
}

.page-footer__copyright p {
    margin: 0
}

.page-footer__copyright a {
    margin: 0 10px;
    color: inherit;
    text-decoration: none
}

.page-footer__copyright a:hover {
    color: #fff
}

.index-slider img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain
}

.index-slider .swiper-pagination-bullets {
    bottom: 25px
}

.index-slider .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 40px;
    height: 8px;
    margin: 0 5px;
    border-radius: 0;
    opacity: 1;
    background-color: #fff
}

.index-slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
    background-color: #002a6c
}

.product-categories {
    padding: 70px 0;
    position: relative;
    background-color: #fbfbfb
}

.product-categories h2 {
    margin: 0;
    color: #212121;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    position: relative
}

@media (min-width: 992px) {
    .product-categories h2 {
        padding: 0 15px;
        text-align: left
    }
}

@media (max-width: 1200px) {
    .product-categories h2 {
        font-size: 32px
    }
}

@media (max-width: 992px) {
    .product-categories h2 {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .product-categories h2 {
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .product-categories h2 {
        font-size: 20px
    }
}

.product-categories__main-link {
    cursor: pointer;
    padding: 0 14px;
    height: 40px;
    display: flex;
    width: fit-content;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #bebebe;
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    color: #212121
}

@media (max-width: 992px) {
    .product-categories__main-link {
        margin-top: 30px
    }
}

@media (min-width: 992px) {
    .product-categories__main-link {
        padding: 0 15px;
        margin: 34px 0 0 15px
    }
}

.product-categories__main-link:hover {
    background-color: #07953f;
    color: #fff
}

.product-categories__main-link:hover > svg {
    fill: #fff
}

.product-categories__main-link > svg {
    fill: #212121;
    margin-left: 15px
}

.product-categories__list {
    margin: 70px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style-type: none
}

.product-categories__item {
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box
}

@media (min-width: 768px) {
    .product-categories__item {
        max-width: 50%
    }
}

@media (min-width: 992px) {
    .product-categories__item {
        max-width: 25%
    }
}

@media (max-width: 992px) {
    .product-categories__item {
        margin-bottom: 30px
    }
}

@media (max-width: 768px) {
    .product-categories__item {
        margin-bottom: 20px
    }
}

.product-categories__item:hover .product-categories__wrapper {
    box-shadow: 0 10px 30px #0003;
    transform: scale3d(1.01, 1.01, 1.01)
}

.product-categories__wrapper {
    height: 100%;
    text-align: center;
    background-color: #fff;
    transition: all .3s cubic-bezier(0, 0, .5, 1)
}

.product-categories__picture {
    width: 100%;
    display: block
}

.product-categories__picture img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 100%;
    display: block
}

.product-categories__item h3 {
    font-weight: 500;
    line-height: 28px;
    margin: 20px 0;
    color: #212121;
    font-size: 18px
}

.product-categories__item h3 > a {
    color: inherit;
    text-decoration: none
}

.product-categories__item h3 > a:hover {
    color: #002a6c
}

@media (max-width: 1500px) {
    .product-categories__item h3 {
        font-size: 17px;
        line-height: 27px
    }
}

.hero {
    padding: 70px 0;
    text-align: center;
    background-color: #e9e9e9
}

.hero p {
    margin: 0;
    font-size: 40px;
    color: #212121;
    line-height: 1.47;
    font-weight: 700
}

@media (max-width: 1200px) {
    .hero p {
        font-size: 32px
    }
}

@media (max-width: 992px) {
    .hero p {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .hero p {
        line-height: 1.2;
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .hero p {
        font-size: 20px
    }
}

.hero p span {
    color: #07953f
}

.hero__button {
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    color: #212121;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin: 34px 0 0;
    padding: 0 14px;
    min-height: 40px;
    background: transparent;
    border: 1px solid #BEBEBE
}

.hero__button:hover {
    background-color: #07953f;
    color: #fff
}

.hero__button:hover > svg {
    fill: #fff
}

.hero__button > svg {
    fill: #212121;
    margin-left: 15px
}

.intro {
    padding: 0 0 70px
}

.intro > img {
    display: block;
    margin-bottom: 70px;
    max-width: 100%
}

.intro .container {
    display: flex;
    align-items: center
}

.intro__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.intro__wrapper-column {
    box-sizing: border-box;
    padding: 0 15px;
    width: 50%
}

@media (max-width: 992px) {
    .intro__wrapper-column {
        width: 100%
    }
}

.intro h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    color: #212121
}

@media (max-width: 1200px) {
    .intro h2 {
        font-size: 32px
    }
}

@media (max-width: 992px) {
    .intro h2 {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .intro h2 {
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .intro h2 {
        font-size: 20px
    }
}

.intro__main-link {
    cursor: pointer;
    padding: 0 14px;
    min-height: 40px;
    display: flex;
    width: fit-content;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #bebebe;
    margin: 50px 0 0;
    color: #212121
}

@media (max-width: 1200px) {
    .intro__main-link {
        margin: 20px 0
    }
}

@media (max-width: 768px) {
    .intro__main-link {
        padding: 0 30px
    }
}

.intro__main-link:hover {
    background-color: #07953f;
    color: #fff
}

.intro__main-link:hover > svg {
    fill: #fff
}

.intro__main-link > svg {
    fill: #212121;
    margin-left: 15px
}

.intro p, .intro .intro__steps-list {
    font-size: 17px
}

@media (max-width: 1200px) {
    .intro p, .intro .intro__steps-list {
        line-height: 28px;
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .intro p, .intro .intro__steps-list {
        line-height: 26px;
        text-align: left
    }
}

.intro p {
    margin: 0
}

.intro__steps-list {
    padding: 0;
    margin: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style-type: none
}

@media (max-width: 1200px) {
    .intro__steps-list {
        margin: 25px 0 0
    }
}

@media (max-width: 576px) {
    .intro__steps-list {
        margin: 20px 0 0
    }
}

.intro__steps-list li {
    width: 30%;
    margin: 10px 0 0;
    font-weight: 700;
    font-size: 16px
}

@media (max-width: 992px) {
    .intro__steps-list li {
        font-size: 18px;
        width: 48%
    }
}

.cases {
    padding: 70px 0;
    background-color: #fff
}

.cases h2 {
    margin: 0;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #212121;
    line-height: 1;
    position: relative
}

@media (min-width: 992px) {
    .cases h2 {
        padding: 0 15px;
        text-align: left
    }
}

@media (max-width: 1200px) {
    .cases h2 {
        font-size: 32px
    }
}

@media (max-width: 992px) {
    .cases h2 {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .cases h2 {
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .cases h2 {
        font-size: 20px
    }
}

.cases__main-link {
    cursor: pointer;
    padding: 0 14px;
    height: 40px;
    display: flex;
    width: fit-content;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #bebebe;
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    color: #212121
}

@media (max-width: 992px) {
    .cases__main-link {
        margin-top: 30px
    }
}

@media (min-width: 992px) {
    .cases__main-link {
        padding: 0 15px;
        margin: 34px 0 0 15px
    }
}

.cases__main-link:hover {
    background-color: #07953f;
    color: #fff
}

.cases__main-link:hover > svg {
    fill: #fff
}

.cases__main-link > svg {
    fill: #212121;
    margin-left: 15px
}

.cases__list {
    padding: 0;
    margin: 60px 0 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

@media (max-width: 1200px) {
    .cases__list {
        margin: 50px 0 0
    }
}

@media (max-width: 992px) {
    .cases__list {
        margin: 25px 0 0
    }
}

@media (max-width: 768px) {
    .cases__list {
        margin: 20px 0 0
    }
}

.cases__item {
    width: 100%;
    padding: 0 15px;
    position: relative;
    box-sizing: border-box
}

@media (max-width: 768px) {
    .cases__item {
        margin-bottom: 20px
    }
}

@media (min-width: 768px) {
    .cases__item {
        max-width: 33%
    }
}

.cases__item:hover .cases__wrapper {
    box-shadow: 0 10px 30px #0003;
    transform: scale3d(1.01, 1.01, 1.01)
}

.cases__wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    transition: all .3s cubic-bezier(0, 0, .5, 1)
}

.cases__wrapper > img {
    width: 100%;
    aspect-ratio: 1.2/1;
    object-fit: cover;
    max-width: 100%;
    display: block
}

.cases__text {
    box-sizing: border-box;
    width: 100%;
    padding: 22px 32px;
    transition: opacity .2s, transform .35s;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    background-color: #002a6c
}

@media (max-width: 1200px) {
    .cases__text {
        padding: 20px 25px
    }
}

@media (max-width: 992px) {
    .cases__text {
        padding: 18px 20px
    }
}

@media (max-width: 768px) {
    .cases__text {
        padding: 15px
    }
}

.cases__text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0
}

@media (max-width: 768px) {
    .cases__text h3 {
        font-size: 18px
    }
}

@media (max-width: 576px) {
    .cases__text h3 {
        font-size: 17px
    }
}

.cases__text p {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    transition: all .5s ease 0s;
    margin: 15px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

@media (max-width: 1200px) {
    .cases__text p {
        margin: 4px;
        line-height: 24px
    }
}

.subscription {
    padding: 70px 0;
    background-repeat: no-repeat;
    background-repeat: repeat
}

@media (max-width: 768px) {
    .subscription {
        padding: 20px 0
    }
}

.subscription h2 {
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.47;
    position: relative;
    padding-right: 15px;
    padding-left: 15px
}

@media (min-width: 992px) {
    .subscription h2 {
        max-width: 65%
    }
}

@media (max-width: 1200px) {
    .subscription h2 {
        font-size: 32px
    }
}

@media (max-width: 992px) {
    .subscription h2 {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .subscription h2 {
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .subscription h2 {
        font-size: 20px
    }
}

.subscription__form {
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

@media (min-width: 992px) {
    .subscription__form {
        max-width: 66%
    }
}

.subscription__form input {
    max-height: 70px;
    box-sizing: border-box;
    line-height: 70px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-right: none;
    font-family: inherit;
    flex-grow: 1
}

@media (max-width: 768px) {
    .subscription__form input {
        max-height: 60px;
        line-height: 60px;
        font-size: 16px;
        padding: 0 10px
    }
}

.subscription__form button {
    cursor: pointer;
    padding: 0;
    min-width: 100px;
    border: none;
    align-self: stretch;
    background: #07953f;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 28px 28px
}

.subscription__form button:hover {
    filter: brightness(1.1)
}

.subscription__form .sub-form-error {
    color: #a94442;
    font-size: 12px;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 115%
}

.order-process {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: 100% 100%
}

@media (max-width: 1200px) {
    .order-process {
        margin-top: 70px;
        padding: 70px 0
    }
}

@media (max-width: 992px) {
    .order-process {
        margin-top: 50px;
        padding: 50px 0
    }
}

.order-process .container {
    width: 1400px;
    margin: 0 auto
}

@media (max-width: 1200px) {
    .order-process .container {
        width: 82%
    }
}

@media (max-width: 992px) {
    .order-process .container {
        width: 88%
    }
}

.order-process h2 {
    font-size: 40px;
    line-height: 52px;
    color: #212121;
    font-weight: 400;
    margin: 0 auto 30px;
    text-align: center
}

@media (max-width: 1400px) {
    .order-process h2 {
        font-size: 34px
    }
}

@media (max-width: 1200px) {
    .order-process h2 {
        font-size: 36px;
        line-height: 42px
    }
}

@media (max-width: 992px) {
    .order-process h2 {
        font-size: 28px;
        line-height: 30px
    }
}

.order-process__steps {
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: center 23px
}

@media (max-width: 992px) {
    .order-process__steps {
        background-image: none !important
    }
}

.order-process__steps-list {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0
}

.order-process__steps-item {
    text-align: center;
    width: 25%;
    transition: .5s all
}

@media (max-width: 992px) {
    .order-process__steps-item {
        width: 50%;
        margin-bottom: 30px
    }
}

.order-process__steps-item:hover {
    transform: translateY(-8px)
}

.order-process__steps-item div {
    display: inline-block;
    width: 155px;
    height: 155px;
    line-height: 155px;
    border-radius: 50%;
    background-color: #002a6c;
    background-size: 64px 64px;
    background-position: center center;
    background-repeat: no-repeat
}

@media (max-width: 1580px) {
    .order-process__steps-item div {
        width: 140px;
        height: 140px;
        line-height: 140px
    }
}

@media (max-width: 1200px) {
    .order-process__steps-item div {
        width: 120px;
        height: 120px;
        line-height: 120px
    }
}

@media (max-width: 992px) {
    .order-process__steps-item div {
        width: 92px;
        height: 92px;
        line-height: 92px
    }
}

.order-process__steps-item h3 {
    margin: 30px auto 0;
    font-size: 20px;
    color: #212121;
    font-weight: 400;
    text-align: center
}

@media (max-width: 992px) {
    .order-process__steps-item h3 {
        font-size: 18px;
        margin-top: 20px
    }
}

.order-process__steps-item p {
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 30px;
    color: #333;
    text-align: center
}

@media (max-width: 1400px) {
    .order-process__steps-item p {
        line-height: 24px
    }
}

@media (max-width: 992px) {
    .order-process__steps-item p {
        font-size: 15px;
        margin-top: 16px;
        line-height: 22px
    }
}

.faq {
    padding: 70px 0
}

.faq__wrapper {
    display: flex;
    flex-wrap: wrap
}

.faq__column {
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box
}

@media (min-width: 768px) {
    .faq__column {
        max-width: 50%
    }
}

.faq__column img {
    display: block;
    object-fit: cover;
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 5px;
    margin-left: auto
}

@media (max-width: 992px) {
    .faq__column img {
        margin-bottom: 20px;
        margin-right: 5px;
        margin-top: 120px
    }
}

@media (max-width: 768px) {
    .faq__column img {
        margin-bottom: 20px;
        margin-right: 5px;
        margin-top: 0
    }
}

.faq__column > p {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    display: block;
    color: #002a6c;
    padding: 0 0 5px
}

@media (min-width: 992px) and (max-width: 1200px) {
    .faq__column > p {
        margin-top: 20px
    }
}

.faq__column h2 {
    font-size: 40px;
    font-weight: 700;
    color: #002a6c;
    margin: 0 0 45px
}

@media (max-width: 1200px) {
    .faq__column h2 {
        font-size: 30px
    }
}

@media (max-width: 992px) {
    .faq__column h2 {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .faq__column h2 {
        font-size: 20px
    }
}

.faq__list {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.faq__item {
    border-radius: 5px;
    margin-bottom: 15px;
    background-color: #fff;
    box-shadow: 0 0 30px #00000012
}

.faq__item:last-child {
    margin-bottom: 0
}

.faq__item:hover .faq__item-title-wrapper {
    color: #fff;
    background-color: #002a6c
}

.faq__item:hover .faq__item-title-wrapper svg {
    fill: #fff
}

.faq__item--selected .faq__item-title-wrapper {
    color: #fff;
    background-color: #002a6c
}

.faq__item--selected .faq__item-title-wrapper svg {
    fill: #fff;
    transform: rotate(90deg)
}

.faq__item--selected .faq__item-text-wrapper {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.faq__item-title-wrapper {
    cursor: pointer;
    transition: .5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 25px 11px 15px;
    color: #222429
}

.faq__item-title-wrapper span {
    font-size: 20px;
    font-weight: 600;
    color: inherit;
    transition: .5s
}

.faq__item-title-wrapper svg {
    transition: .5s;
    fill: #222429;
    transform: rotate(-90deg)
}

.faq__item-text-wrapper {
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    transition: .5s;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden
}

.faq__item-text-wrapper p {
    margin: 0;
    padding: 20px;
    font-size: 17px;
    font-weight: 400;
    color: #666
}

.latest-news {
    padding: 70px 0;
    background: #f2f2f2
}

.latest-news h2 {
    margin: 0;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #212121;
    line-height: 1;
    position: relative
}

@media (min-width: 992px) {
    .latest-news h2 {
        padding: 0 15px;
        text-align: left
    }
}

@media (max-width: 1200px) {
    .latest-news h2 {
        font-size: 32px
    }
}

@media (max-width: 992px) {
    .latest-news h2 {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .latest-news h2 {
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .latest-news h2 {
        font-size: 20px
    }
}

.latest-news__main-link {
    cursor: pointer;
    padding: 0 14px;
    height: 40px;
    display: flex;
    width: fit-content;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #bebebe;
    margin-top: 34px;
    margin-left: auto;
    margin-right: auto;
    color: #212121
}

@media (max-width: 992px) {
    .latest-news__main-link {
        margin-top: 30px
    }
}

@media (min-width: 992px) {
    .latest-news__main-link {
        padding: 0 15px;
        margin: 34px 0 0 15px
    }
}

.latest-news__main-link:hover {
    background-color: #07953f;
    color: #fff
}

.latest-news__main-link:hover > svg {
    fill: #fff
}

.latest-news__main-link > svg {
    fill: #212121;
    margin-left: 15px
}

.latest-news__wrapper {
    margin: 46px 0 0;
    display: flex;
    flex-wrap: wrap
}

@media (max-width: 992px) {
    .latest-news__wrapper {
        margin: 40px 0 0
    }
}

.latest-news__column {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px
}

@media (min-width: 992px) {
    .latest-news__column {
        max-width: 50%
    }
}

.latest-news__item {
    display: flex;
    background-color: #fff;
    transition: all .3s cubic-bezier(0, 0, .5, 1);
    margin-bottom: 34px
}

@media (max-width: 992px) {
    .latest-news__item {
        margin-bottom: 20px
    }
}

.latest-news__item:not(:only-child):last-child {
    margin: 0
}

.latest-news__item:hover {
    box-shadow: 0 10px 30px #0003;
    transform: scale3d(1.01, 1.01, 1.01)
}

.latest-news__item img {
    height: 100%;
    aspect-ratio: 180/134;
    object-fit: cover;
    max-width: 180px
}

@media (max-width: 576px) {
    .latest-news__item img {
        aspect-ratio: 150/134;
        max-width: 150px
    }
}

.latest-news__item-text {
    padding: 16px 16px 18px 26px
}

@media (max-width: 992px) {
    .latest-news__item-text {
        padding: 12px 12px 12px 18px
    }
}

.latest-news__item-text h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.latest-news__item-text h3 a {
    text-decoration: none;
    color: inherit
}

.latest-news__item-text h3 a:hover {
    color: #002a6c
}

.latest-news__item-text p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.latest-news__item-text time {
    font-size: 12px;
    display: inline-block;
    margin: 10px 0 0
}

.latest-news__item--recent {
    display: block;
    margin: 0
}

.latest-news__item--recent img {
    display: block;
    width: 100%;
    aspect-ratio: 680/372;
    object-fit: cover;
    max-width: 100%
}

.latest-news__item--recent .latest-news__item-text {
    padding: 10px 20px
}

@media (max-width: 992px) {
    .latest-news__item--recent {
        margin-bottom: 20px
    }
}

.contact-inquiry {
    padding: 30px 0 70px
}

.contact-inquiry__wrapper {
    display: flex;
    gap: 20px;
    /*flex-wrap: wrap*/
}

.contact-productPage-inquiry__wrapper {
    display: block;
}

.contact-productPage-inquiry__wrapper label{
    width: 100%;
}

.contact-inquiry__text {
    padding: 0;
    margin: 45px 0 0;
    width: 100%;
    box-sizing: border-box
}

@media (min-width: 992px) {
    .contact-inquiry__text {
        max-width: 35%
    }
}

@media (max-width: 768px) {
    .contact-inquiry__wrapper {
        gap: 0;
        flex-wrap: wrap
    }
    .contact-inquiry__text {
        margin: 45px 15px 0
    }
}

.contact-inquiry__text h2 {
    color: #212121;
    font-size: 40px;
    margin: auto auto 40px;
    font-weight: 700;
    position: relative
}

.contact-inquiry__text h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 3px;
    width: 90px;
    background: #e5e5e5;
    border-radius: 30px
}

@media (max-width: 1200px) {
    .contact-inquiry__text h2 {
        font-size: 36px
    }
}

@media (max-width: 992px) {
    .contact-inquiry__text h2 {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .contact-inquiry__text h2 {
        font-size: 20px
    }
}

.contact-inquiry__text p {
    color: #212121;
    font-weight: 400;
    padding: 5px 0 0;
    font-size: 16px;
    margin: 0 0 45px
}

.contact-inquiry__text h3 {
    margin-bottom: 18px;
    color: #212121;
    font-size: 32px;
    font-weight: 700
}

@media (max-width: 768px) {
    .contact-inquiry__text h3 {
        font-size: 24px
    }
}

.contact-inquiry__text a {
    text-decoration: none;
    margin: 3px 0;
    display: block;
    font-size: inherit;
    color: inherit;
    font-weight: 400;
    line-height: inherit;
    letter-spacing: inherit;
    transition: color .3s
}

/*@media (min-width: 992px) {*/
/*    .contact-inquiry__form {*/
/*        max-width: 65%*/
/*    }*/
/*}*/

.contact-form {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    box-sizing: border-box
}

.contact-form__intro {
    padding: 20px;
    text-align: center
}

.contact-form__intro h2, .contact-form__intro h3 {
    margin: 0 0 10px;
    color: #212121;
    font-size: 32px;
    font-weight: 700
}

@media (max-width: 768px) {
    .contact-form__intro h2, .contact-form__intro h3 {
        font-size: 20px
    }
}

.contact-form__intro p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px
}

.contact-form__control {
    position: relative;
    padding: 12px 10px
}

.contact-form__control--required label > span:before {
    content: "*";
    color: #f0150f;
    padding-right: 5px
}

.contact-form__control > span {
    display: block;
    margin-bottom: 4px;
    color: #8c8c8c
}

.contact-form__control > label > span {
    display: block;
    width: 100%;
    color: #666;
    padding-bottom: 5px
}

.contact-form__control input {
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-height: 36px;
    padding: 0 58px 0 10px;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    text-overflow: ellipsis;
    font-family: inherit;
    font-size: inherit
}

.contact-form__control input::placeholder {
    color: #bfbfbf
}

.contact-form__control textarea {
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    padding: 8px 65px 8px 12px;
    min-height: 96px;
    box-sizing: border-box;
    border: 1px solid #D9D9D9;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    resize: vertical;
    min-width: 100%;
    max-width: 100%
}

.contact-form__control textarea::placeholder {
    color: #bfbfbf
}

.contact-form__control--error input, .contact-form__control--error textarea {
    border: 1px solid #F0150F
}

.contact-form__control input[hidden] {
    display: none
}

.contact-form__upload-file {
    display: block;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    background: transparent;
    padding: 36px 8px 16px;
    border: 1px dashed #D9D9D9;
    border-radius: 2px;
    cursor: pointer;
    color: #8c8c8c;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center 20px
}

.contact-form__files-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.contact-form__added-file {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49%;
    min-height: 36px;
    padding: 4px 8px;
    margin-top: 22px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    background: #fafafa;
    box-sizing: border-box
}

@media (max-width: 768px) {
    .contact-form__added-file {
        width: 100%
    }
}

.contact-form__added-file img {
    max-width: 25px;
    margin-right: 5px;
    width: 100%;
    height: auto;
    object-fit: contain
}

.contact-form__added-file-name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.contact-form__added-file-remove {
    cursor: pointer;
    width: 22px;
    height: 22px;
    padding: 0;
    background-image: url(/local/templates/chinacleanroom/src/images/icons/remove-file.png);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center center;
    background-color: transparent;
    border: none;
    margin-left: 5px
}

.contact-form__control > .contact-form__symbol-count {
    margin: 0;
    font-size: 12px;
    color: #8c8c8c;
    position: absolute;
    right: 20px;
    top: 49px
}

.contact-form__submit-wrapper {
    padding: 0 10px 12px
}

.contact-form__submit {
    display: block;
    margin: 12px auto 0;
    color: #fff;
    background-color: #002a6c;
    padding: 10px 40px;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit
}

.contact-form__error-message {
    margin-top: 3px;
    color: #a94442;
    font-size: 12px;
    line-height: 1
}

.key-facts {
    position: relative;
    margin-bottom: 110px;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    width: 100%;
    object-fit: cover;
    object-position: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 32/9;
    height: auto;
    box-sizing: border-box
}

@media (max-width: 992px) {
    .key-facts {
        margin-bottom: 150px
    }
}

.key-facts .container {
    padding: 0 150px
}

@media (max-width: 1200px) {
    .key-facts .container {
        padding: 0 60px
    }
}

@media (max-width: 992px) {
    .key-facts .container {
        padding: 0 30px
    }
}

@media (max-width: 768px) {
    .key-facts .container {
        padding: 0 20px
    }
}

@media (max-width: 576px) {
    .key-facts .container {
        padding: 0 10px
    }
}

.key-facts__list {
    box-sizing: border-box;
    position: absolute;
    background: #f6f6f6;
    list-style-type: none;
    margin: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    transform: translateY(50%)
}

@media (max-width: 992px) {
    .key-facts__list {
        justify-content: center
    }
}

@media (max-width: 576px) {
    .key-facts__list {
        transform: translateY(70%)
    }
}

.key-facts__item {
    padding: 20px 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 25%
}

@media (max-width: 992px) {
    .key-facts__item {
        max-width: 50%
    }
}

.key-facts__item-number {
    font-weight: 700;
    font-size: 44px;
    line-height: 1.4;
    color: #07953f
}

@media (max-width: 1500px) {
    .key-facts__item-number {
        font-size: 36px
    }
}

@media (max-width: 1200px) {
    .key-facts__item-number {
        font-size: 32px
    }
}

@media (max-width: 992px) {
    .key-facts__item-number {
        font-size: 28px
    }
}

@media (max-width: 768px) {
    .key-facts__item-number {
        font-size: 24px
    }
}

@media (max-width: 576px) {
    .key-facts__item-number {
        font-size: 20px
    }
}

.key-facts__item-number sup {
    font-size: 30px
}

@media (max-width: 1500px) {
    .key-facts__item-number sup {
        font-size: 28px
    }
}

@media (max-width: 1200px) {
    .key-facts__item-number sup {
        font-size: 20px
    }
}

@media (max-width: 992px) {
    .key-facts__item-number sup {
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .key-facts__item-number sup {
        font-size: 14px
    }
}

.key-facts__item p {
    margin: 0;
    font-size: 18px;
    text-align: center;
    color: #2f2f2f;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width: 1200px) {
    .key-facts__item p {
        font-size: 16px
    }
}

@media (max-width: 992px) {
    .key-facts__item p {
        font-size: 14px
    }
}

.about-us {
    padding-bottom: 70px
}

.about-us h2 {
    text-align: center;
    font-size: 40px;
    margin: 0 0 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #212121
}

@media (max-width: 1500px) {
    .about-us h2 {
        font-size: 36px
    }
}

@media (max-width: 1200px) {
    .about-us h2 {
        font-size: 28px
    }
}

@media (max-width: 992px) {
    .about-us h2 {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .about-us h2 {
        font-size: 20px
    }
}

.about-us__wrapper {
    display: flex;
    flex-wrap: wrap
}

.about-us__wrapper img {
    display: block;
    box-sizing: border-box;
    aspect-ratio: 2;
    object-fit: cover;
    max-width: 50%;
    width: 100%;
    padding: 0 15px
}

@media (max-width: 992px) {
    .about-us__wrapper img {
        max-width: 100%
    }
}

.about-us__wrapper p {
    box-sizing: border-box;
    margin: 0;
    padding: 0 15px;
    font-size: 16px;
    line-height: 2;
    max-width: 50%;
    width: 100%
}

@media (max-width: 1200px) {
    .about-us__wrapper p {
        font-size: 14px
    }
}

@media (max-width: 992px) {
    .about-us__wrapper p {
        padding-top: 10px;
        max-width: 100%
    }
}

.global-market {
    padding-bottom: 70px
}

.global-market h2 {
    text-align: center;
    font-size: 40px;
    margin: 0 0 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #212121
}

@media (max-width: 1500px) {
    .global-market h2 {
        font-size: 36px
    }
}

@media (max-width: 1200px) {
    .global-market h2 {
        font-size: 28px
    }
}

@media (max-width: 992px) {
    .global-market h2 {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .global-market h2 {
        font-size: 20px
    }
}

.global-market p {
    margin: 0;
    font-size: 16px;
    line-height: 2
}

@media (max-width: 1200px) {
    .global-market p {
        font-size: 14px
    }
}

.global-market > .container > p {
    margin-bottom: 40px
}

.global-market__wrapper {
    display: flex;
    flex-wrap: wrap
}

.global-market__map {
    position: relative;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
    max-width: 65%
}

@media (max-width: 992px) {
    .global-market__map {
        max-width: 100%
    }
}

.global-market__map img {
    aspect-ratio: 2;
    object-fit: cover;
    max-width: 100%;
    display: block
}

.global-market__description {
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
    max-width: 35%
}

@media (max-width: 992px) {
    .global-market__description {
        margin-top: 20px;
        max-width: 100%
    }
}

.global-market__description h3 {
    font-size: 20px;
    margin: 0 0 30px;
    line-height: 1.5;
    color: #666
}

@media (max-width: 1200px) {
    .global-market__description h3 {
        margin-bottom: 20px
    }
}

@media (max-width: 992px) {
    .global-market__description h3 {
        margin-bottom: 15px
    }
}

@media (max-width: 768px) {
    .global-market__description h3 {
        margin-bottom: 10px
    }
}

.global-market__description p {
    margin-bottom: 60px
}

@media (max-width: 1500px) {
    .global-market__description p {
        margin-bottom: 50px
    }
}

@media (max-width: 1200px) {
    .global-market__description p {
        margin-bottom: 30px
    }
}

@media (max-width: 992px) {
    .global-market__description p {
        margin-bottom: 20px
    }
}

@media (max-width: 768px) {
    .global-market__description p {
        margin-bottom: 10px
    }
}

.global-market__button {
    box-sizing: border-box;
    cursor: pointer;
    padding: 11px 10px;
    display: flex;
    width: fit-content;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid #dbe0e3;
    color: #212121;
    border-radius: 2px;
    transition: background-color .3s ease
}

.global-market__button:hover {
    background-color: #07953f;
    color: #fff
}

.global-market__button:hover > svg {
    fill: #fff
}

.global-market__button > svg {
    fill: #212121;
    margin-left: 15px
}

.global-market__map-location {
    position: absolute
}

@media (max-width: 768px) {
    .global-market__map-location {
        display: none
    }
}

.global-market__map-location span {
    width: 14px;
    height: 14px;
    border: 4px solid #07953f;
    background: #fff;
    border-radius: 50%;
    display: block;
    position: relative;
    animation: scale2 1.5s linear infinite;
    box-sizing: border-box
}

@keyframes scale2 {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.5)
    }
    to {
        transform: scale(1)
    }
}

.users-questions {
    margin-bottom: 100px
}

@media (max-width: 1500px) {
    .users-questions {
        margin-bottom: 85px
    }
}

@media (max-width: 1200px) {
    .users-questions {
        margin-bottom: 55px
    }
}

@media (max-width: 992px) {
    .users-questions {
        margin-bottom: 40px
    }
}

@media (max-width: 768px) {
    .users-questions {
        margin-bottom: 25px
    }
}

.users-questions h2 {
    text-align: center;
    font-size: 40px;
    margin: 0 0 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #212121
}

@media (max-width: 1500px) {
    .users-questions h2 {
        font-size: 36px
    }
}

@media (max-width: 1200px) {
    .users-questions h2 {
        font-size: 28px
    }
}

@media (max-width: 992px) {
    .users-questions h2 {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .users-questions h2 {
        font-size: 20px
    }
}

.users-questions__list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.users-questions__item {
    max-width: 49%;
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 71px 60px 60px
}

@media (max-width: 992px) {
    .users-questions__item {
        max-width: 100%
    }

    .users-questions__item:last-child {
        margin-top: 20px
    }
}

.users-questions__item span {
    line-height: .5;
    font-size: 76px;
    color: #002a6c;
    font-weight: 700;
    display: block;
    font-family: monospace
}

@media (max-width: 1500px) {
    .users-questions__item span {
        font-size: 70px
    }
}

@media (max-width: 1200px) {
    .users-questions__item span {
        font-size: 58px
    }
}

@media (max-width: 992px) {
    .users-questions__item span {
        font-size: 52px
    }
}

@media (max-width: 768px) {
    .users-questions__item span {
        font-size: 46px
    }
}

@media (max-width: 576px) {
    .users-questions__item span {
        font-size: 40px
    }
}

.users-questions__item h3 {
    margin: 0 0 17px;
    color: #212121;
    font-size: 20px;
    line-height: 1.5;
    min-height: 60px
}

@media (max-width: 1200px) {
    .users-questions__item h3 {
        font-size: 18px
    }
}

@media (max-width: 992px) {
    .users-questions__item h3 {
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .users-questions__item h3 {
        font-size: 14px
    }
}

.users-questions__item p {
    margin: 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
    font-size: 16px
}

@media (max-width: 1200px) {
    .users-questions__item p {
        font-size: 14px
    }
}

.users-questions__item p:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #002a6c;
    border-radius: 50%;
    left: -2px;
    top: 6px
}

.honor {
    background-color: #f6f6f6;
    margin-bottom: 70px;
    padding: 70px 0 30px
}

.honor h2 {
    text-align: center;
    font-size: 40px;
    margin: 0;
    line-height: 1.3;
    font-weight: 600;
    color: #212121
}

@media (max-width: 1500px) {
    .honor h2 {
        font-size: 36px
    }
}

@media (max-width: 1200px) {
    .honor h2 {
        font-size: 28px
    }
}

@media (max-width: 992px) {
    .honor h2 {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .honor h2 {
        font-size: 20px
    }
}

.honor__wrapper {
    position: relative;
    margin: 0 40px
}

.honor__wrapper .swiper-button-prev, .honor__wrapper .swiper-button-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 15px;
    height: 27px;
    cursor: pointer;
    justify-content: center;
    display: flex;
    align-items: center;
    transform: translateY(-50%)
}

.honor__wrapper .swiper-button-prev:hover svg, .honor__wrapper .swiper-button-next:hover svg {
    fill: #07953f
}

.honor__wrapper svg {
    fill: #919191
}

.honor__wrapper .swiper-button-prev {
    left: -40px
}

.honor__wrapper .swiper-button-prev svg {
    transform: rotate(180deg)
}

.honor__wrapper .swiper-button-next {
    right: -40px
}

.honor__wrapper .swiper-slide {
    box-sizing: border-box;
    padding: 40px 0;
    display: flex;
    justify-content: center
}

.honor__slider {
    overflow: hidden
}

.honor__item {
    height: 250px;
    width: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent
}

.honor__item img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    width: 100%;
    display: block;
    box-sizing: border-box
}

.swiper-slide-active .honor__item {
    height: 240px;
    background: #fff;
    box-shadow: 0 4px 39.9px #00000040
}

.about-inquiry {
    margin-bottom: 70px
}

.about-inquiry__wrapper {
    background-color: #002a6c;
    padding: 42px 60px 54px;
    justify-content: space-between;
    display: flex;
    gap: 100px
}

@media (max-width: 1500px) {
    .about-inquiry__wrapper {
        gap: 80px
    }
}

@media (max-width: 1200px) {
    .about-inquiry__wrapper {
        padding: 20px 40px 30px;
        gap: 40px
    }
}

@media (max-width: 992px) {
    .about-inquiry__wrapper {
        flex-direction: column;
        padding: 30px 30px 40px;
        gap: 30px
    }
}

@media (max-width: 768px) {
    .about-inquiry__wrapper {
        gap: 20px;
        padding: 0
    }
}

.about-inquiry__contacts {
    margin: 20px 0 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap
}

.about-inquiry__contacts li {
    padding: 0 15px 40px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
}

.about-inquiry__contacts li strong {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    line-height: 1.5
}

.about-inquiry__contacts li p {
    margin: 0
}

.about-inquiry__contacts li a {
    color: inherit;
    text-decoration: none
}

.about-inquiry .contact-form__intro {
    text-align: left;
    padding-left: 10px
}

.about-inquiry .contact-form__intro p {
    font-weight: 600;
    color: #212121;
    font-size: 20px;
    line-height: 1.5
}

.about-inquiry .contact-form__submit {
    background-color: #07953f;
    width: 100%;
    font-weight: 700;
    line-height: 2;
    transition: background-color .3s ease
}

.about-inquiry .contact-form__submit:hover {
    background: linear-gradient(0deg, #ffffff1a, #ffffff1a), #07953f
}

.certificates {
    margin-top: 30px;
    border-top: 1px solid #e3e3e3;
    padding-top: 40px;
    padding-bottom: 60px
}

.certificates__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap
}

.certificates__list li {
    box-sizing: border-box;
    padding: 0 15px;
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

@media (min-width: 768px) {
    .certificates__list li {
        max-width: 50%
    }
}

@media (min-width: 992px) {
    .certificates__list li {
        max-width: 25%
    }
}

.certificates__list a {
    display: block;
    width: 100%;
    overflow: hidden
}

.certificates__list img {
    display: block;
    width: 100%;
    object-fit: contain;
    border: 3px solid #e0e0e0;
    box-sizing: border-box
}

.contact-us {
    margin: 60px 0
}

.company-location {
    padding: 10px 0
}

.contacts-information {
    padding-top: 40px;
    padding-bottom: 50px
}

@media (max-width: 768px) {
    .contacts-information {
        padding-bottom: 30px
    }
}

.contacts-information ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap
}

.contacts-information ul li {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px 18px;
    margin-bottom: 20px
}

@media (min-width: 576px) {
    .contacts-information ul li {
        max-width: 50%
    }
}

@media (min-width: 992px) {
    .contacts-information ul li {
        max-width: 33%
    }
}

@media (min-width: 1200px) {
    .contacts-information ul li {
        max-width: 25%
    }
}

.contacts-information strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    border-bottom: 2px solid #dfdfdf;
    padding-bottom: 13px
}

.contacts-information a, .contacts-information p {
    display: block;
    text-decoration: none;
    color: #212121;
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 28px
}

@media (max-width: 768px) {
    .contacts-information a, .contacts-information p {
        margin: 10px 0 0;
        font-size: 15px;
        line-height: 24px
    }
}

.contacts-information a:hover {
    color: #002a6c
}

.news-slider {
    margin: 70px 0
}

@media (max-width: 1500px) {
    .news-slider {
        margin: 60px 0
    }
}

@media (max-width: 1200px) {
    .news-slider {
        margin: 40px 0
    }
}

@media (max-width: 992px) {
    .news-slider {
        margin: 30px 0
    }
}

.news-slider__wrapper {
    background-color: #e9e9e9
}

.news-slider__item {
    display: flex;
    position: relative;
    flex-wrap: wrap
}

.news-slider__item-description {
    flex: 1;
    width: 50%;
    box-sizing: border-box;
    padding: 47px 70px 80px 120px
}

@media (max-width: 1200px) {
    .news-slider__item-description {
        padding: 47px 70px 60px 100px
    }
}

@media (max-width: 992px) {
    .news-slider__item-description {
        padding: 47px 20px 50px 50px
    }
}

@media (max-width: 768px) {
    .news-slider__item-description {
        width: 100%;
        order: 1;
        flex: auto;
        padding: 47px 20px 50px
    }
}

.news-slider__item-description strong {
    display: inline-block;
    box-sizing: border-box;
    background-color: #07953f;
    padding: 5.5px 10px 6.5px 8px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 40px
}

@media (max-width: 1200px) {
    .news-slider__item-description strong {
        font-size: 16px
    }
}

@media (max-width: 992px) {
    .news-slider__item-description strong {
        margin-bottom: 20px;
        font-size: 14px
    }
}

.news-slider__item-description h3 {
    margin: 0 0 10px;
    color: #212121;
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.news-slider__item-description h3:hover {
    color: #07953f
}

@media (max-width: 1200px) {
    .news-slider__item-description h3 {
        font-size: 18px
    }
}

@media (max-width: 992px) {
    .news-slider__item-description h3 {
        font-size: 16px
    }
}

.news-slider__item-description a {
    color: inherit;
    text-decoration: none
}

.news-slider__item-description p {
    margin: 0 0 10px;
    color: #666;
    font-size: 18px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width: 1200px) {
    .news-slider__item-description p {
        font-size: 16px
    }
}

@media (max-width: 992px) {
    .news-slider__item-description p {
        font-size: 14px
    }
}

.news-slider__item-description time {
    color: #666;
    font-size: 16px;
    line-height: 1.25
}

@media (max-width: 1200px) {
    .news-slider__item-description time {
        font-size: 14px
    }
}

.news-slider__item-picture {
    flex: 1;
    box-sizing: border-box;
    width: 50%
}

@media (max-width: 768px) {
    .news-slider__item-picture {
        width: 100%;
        flex: auto
    }
}

.news-slider__item-picture img {
    box-sizing: border-box;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2
}

.news-slider .swiper-button-prev, .news-slider .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    background: #f0f0f0b3;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10
}

.news-slider .swiper-button-prev svg, .news-slider .swiper-button-next svg {
    fill: #212121
}

.news-slider .swiper-button-prev {
    left: 10px
}

.news-slider .swiper-button-prev svg {
    transform: rotate(180deg)
}

.news-slider .swiper-button-prev:hover {
    background: linear-gradient(0deg, #00000080, #00000080), #f0f0f033
}

.news-slider .swiper-button-prev:hover svg {
    fill: #fff
}

.news-slider .swiper-button-next {
    right: 10px;
    background: linear-gradient(0deg, #00000080, #00000080), #f0f0f033
}

.news-slider .swiper-button-next svg {
    fill: #fff
}

.news-slider .swiper-button-next:hover {
    background: #f0f0f0b3
}

.news-slider .swiper-button-next:hover svg {
    fill: #212121
}

.news-slider .news-slider__wrapper .swiper-pagination {
    transform: translate(-50%);
    left: 160px;
    bottom: 40px
}

@media (max-width: 768px) {
    .news-slider .news-slider__wrapper .swiper-pagination {
        left: 50%;
        bottom: 20px
    }
}

.news-slider .swiper-pagination-bullet {
    height: 4px;
    width: 4px;
    background: #12121280;
    opacity: 1;
    border-radius: 50%
}

.news-slider .swiper-pagination-bullet-active {
    width: 20px;
    height: 4px;
    background-color: #121212;
    border-radius: 2px
}

.news-list {
    margin-bottom: 70px
}

@media (max-width: 1500px) {
    .news-list {
        margin-bottom: 60px
    }
}

@media (max-width: 1200px) {
    .news-list {
        margin-bottom: 50px
    }
}

@media (max-width: 992px) {
    .news-list {
        margin-bottom: 40px
    }
}

@media (max-width: 768px) {
    .news-list {
        margin-bottom: 30px
    }
}

.news-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.news-list ul li {
    margin-bottom: 40px;
    display: flex;
    gap: 40px
}

.news-list ul li:last-child {
    margin-bottom: 0
}

.news-list ul li > a {
    height: 200px;
    display: block
}

@media (max-width: 1200px) {
    .news-list ul li > a {
        height: 160px
    }
}

@media (max-width: 992px) {
    .news-list ul li > a {
        height: 140px
    }
}

@media (max-width: 768px) {
    .news-list ul li > a {
        height: 120px
    }
}

.news-list img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/4
}

.news-list ul li > div {
    padding: 15px 40px 20px 0;
    flex: 1;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column
}

@media (max-width: 992px) {
    .news-list ul li > div {
        padding: 0 20px 5px 0
    }
}

.news-list h3 {
    margin: 0 0 10px;
    color: #212121;
    font-size: 20px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.news-list h3:hover {
    color: #07953f
}

@media (max-width: 1200px) {
    .news-list h3 {
        font-size: 18px
    }
}

@media (max-width: 992px) {
    .news-list h3 {
        font-size: 16px
    }
}

.news-list a {
    color: inherit;
    text-decoration: none
}

.news-list p {
    margin: 0;
    color: #666;
    font-size: 18px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

@media (max-width: 1200px) {
    .news-list p {
        font-size: 16px
    }
}

@media (max-width: 992px) {
    .news-list p {
        font-size: 14px
    }
}

.news-list time {
    margin-top: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.25
}

@media (max-width: 1200px) {
    .news-list time {
        font-size: 14px
    }
}

.news-item {
    margin: 70px 0
}

@media (max-width: 1500px) {
    .news-item {
        margin: 60px 0
    }
}

@media (max-width: 1200px) {
    .news-item {
        margin: 50px 0
    }
}

@media (max-width: 992px) {
    .news-item {
        margin: 40px 0
    }
}

@media (max-width: 768px) {
    .news-item {
        margin: 30px 0
    }
}

.news-item__wrapper {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto
}

@media (min-width: 992px) {
    .news-item__wrapper {
        max-width: 66%
    }
}

@media (

(
min-width:

768
px

)
and

(
max-width:

992
px

)
)
{
.news-item__wrapper {
    max-width: 83%
}

}
.news-item h2 {
    margin: 0 0 20px;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    color: #212121
}

@media (max-width: 1500px) {
    .news-item h2 {
        font-size: 40px
    }
}

@media (max-width: 1200px) {
    .news-item h2 {
        font-size: 28px
    }
}

@media (max-width: 992px) {
    .news-item h2 {
        font-size: 22px
    }
}

.news-item time {
    display: block;
    line-height: 1.4;
    color: #7f7f7f;
    font-size: 18px;
    margin-bottom: 40px
}

@media (max-width: 1500px) {
    .news-item time {
        font-size: 17px
    }
}

@media (max-width: 1200px) {
    .news-item time {
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .news-item time {
        font-size: 15px;
        margin-bottom: 20px
    }
}

.news-item p {
    margin: 0 0 20px;
    line-height: 1.4;
    font-size: 18px;
    color: #212121
}

@media (max-width: 1500px) {
    .news-item p {
        font-size: 17px
    }
}

@media (max-width: 992px) {
    .news-item p {
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .news-item p {
        margin-bottom: 15px
    }
}

@media (max-width: 576px) {
    .news-item p {
        font-size: 15px;
        line-height: 1.3
    }
}

.news-item p > a {
    color: #00f;
    text-decoration: none
}

.news-item__buttons {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px
}

@media (max-width: 768px) {
    .news-item__buttons {
        margin-top: 30px;
        padding-top: 30px
    }
}

.news-item__buttons a {
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #002a6c;
    transition: background-color .3s ease;
    border: 1px solid #e0e0e0;
    padding: 9px 16px;
    font-size: 15px;
    color: #666;
    line-height: 1
}

@media (max-width: 768px) {
    .news-item__buttons a {
        font-size: 14px
    }
}

.news-item__buttons a:not(.disabled):hover {
    background-color: #07953f;
    color: #fff
}

.news-item__buttons a.disabled {
    opacity: .6;
    cursor: default
}

.application-items {
    background: #fafafa;
    padding: 60px 0
}

@media (max-width: 768px) {
    .application-items {
        padding: 20px 0
    }
}

.application-items ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.application-items ul li {
    width: 100%;
    padding: 0 10px;
    margin: 0 0 40px;
    box-sizing: border-box
}

@media (max-width: 768px) {
    .application-items ul li {
        padding: 0 7px;
        margin: 0 0 20px
    }
}

@media (min-width: 576px) {
    .application-items ul li {
        max-width: 50%
    }
}

@media (min-width: 768px) {
    .application-items ul li {
        max-width: 33%;
        margin: 0
    }
}

.application-items ul li:hover .application-items__picture img {
    transform: scale(1.05)
}

.application-items ul li:hover .application-items__description {
    opacity: 1;
    transform: scale(1)
}

.application-items__card {
    border-radius: 7px;
    background-color: #fff;
    overflow: hidden
}

.application-items h3 {
    margin: 0;
    min-height: 98px;
    padding: 0 15px;
    overflow: hidden;
    text-align: center;
    color: #212121;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center
}

.application-items h3:hover {
    color: #002a6c
}

@media (max-width: 1200px) {
    .application-items h3 {
        font-size: 18px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

@media (max-width: 768px) {
    .application-items h3 {
        min-height: 65px;
        padding: 0 10px;
        font-size: 17px;
        line-height: 22px
    }
}

.application-items h3 > a {
    color: inherit;
    text-decoration: none
}

.application-items__picture {
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    color: inherit;
    text-decoration: none
}

.application-items__picture img {
    transition: all .3s ease 0s;
    aspect-ratio: 466/287;
    object-fit: cover;
    max-width: 100%;
    display: block;
    box-sizing: border-box
}

.application-items__description {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    background: #000000b3;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .2s, transform .35s;
    transform: scale(0);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    justify-content: center;
    align-items: center
}

@media (max-width: 768px) {
    .application-items__description {
        display: none
    }
}

.application-items__description p {
    margin: 0;
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4
}

@media (max-width: 1500px) {
    .application-items__description p {
        font-size: 14px;
        line-height: 1.4;
        -webkit-line-clamp: 2
    }
}

.application-items__description img {
    max-width: 30px;
    object-fit: contain;
    width: 100%;
    transform: scale(1.05)
}

.application-item {
    padding: 80px 0 0
}

@media (max-width: 768px) {
    .application-item {
        padding: 25px 0 0
    }
}

.application-item > .container > a {
    font-size: 16px;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    margin-bottom: 30px;
    display: flex;
    align-items: center
}

@media (max-width: 768px) {
    .application-item > .container > a {
        font-size: 15px;
        margin-bottom: 15px
    }
}

.application-item > .container > a:hover {
    color: #002a6c
}

.application-item > .container > a svg {
    margin-right: 3px
}

.application-item h2 {
    color: #212121;
    font-size: 22px;
    line-height: 2;
    margin: 0 0 60px;
    font-weight: 700;
    text-align: center
}

@media (max-width: 768px) {
    .application-item h2 {
        font-size: 18px;
        line-height: 1.5;
        margin: 0 0 20px
    }
}

.application-item__slider {
    padding: 50px 0;
    border-top: 1px solid #eeeeee
}

@media (max-width: 768px) {
    .application-item__slider {
        padding: 20px 0
    }
}

.application-item__slider .swiper-slide > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    margin: 0
}

.application-item p {
    margin: 0 0 20px;
    line-height: 32px;
    font-size: 17px
}

.application-item p a {
    color: #00f;
    text-decoration: none
}

@media (max-width: 768px) {
    .application-item p {
        line-height: 24px;
        font-size: 14px
    }
}

.application-item img {
    max-width: 100%;
    display: block;
    object-fit: contain;
    margin-bottom: 20px
}

.application-item__nav {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 45px 0;
    margin: 55px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media (max-width: 768px) {
    .application-item__nav {
        margin: 20px 0 0;
        padding: 20px 0
    }
}

.application-item__nav a {
    line-height: 28px;
    font-size: 14px;
    font-weight: 700;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit
}

.application-item__nav a:not(.disabled):hover {
    color: #002a6c
}

.application-item__nav a.disabled {
    opacity: .6;
    cursor: default
}

.application-item__nav a:last-child svg {
    transform: rotate(180deg);
    margin-left: 10px
}

.application-item__nav a:first-child svg {
    margin-right: 10px
}

.recommended-products {
    margin: 50px 0
}

@media (max-width: 768px) {
    .recommended-products {
        margin: 25px 0
    }
}

.recommended-products__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px
}

.recommended-products h2 {
    margin: 0;
    font-size: 22px;
    color: #212121;
    font-weight: 700;
    line-height: 1
}

@media (max-width: 768px) {
    .recommended-products h2 {
        font-size: 20px
    }
}

.recommended-products__slider-buttons {
    display: flex;
    align-items: center;
    gap: 14px
}

.recommended-products__slider-buttons .swiper-button-prev, .recommended-products__slider-buttons .swiper-button-next {
    cursor: pointer;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #002a6c;
    border: none;
    padding: 0
}

@media (max-width: 768px) {
    .recommended-products__slider-buttons .swiper-button-prev, .recommended-products__slider-buttons .swiper-button-next {
        width: 34px;
        height: 34px
    }
}

.recommended-products__slider-buttons .swiper-button-prev svg, .recommended-products__slider-buttons .swiper-button-next svg {
    fill: #fff
}

.recommended-products__slider-buttons .swiper-button-prev svg {
    transform: rotate(180deg)
}

.recommended-products__item {
    text-decoration: none;
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden
}

.recommended-products__item:hover .recommended-products__item-description {
    opacity: 1;
    transform: scale(1)
}

.recommended-products__item:hover .recommended-products__item-description:after {
    width: calc(100% - 30px)
}

.recommended-products__item img {
    width: 100%;
    display: block;
    transition: all .3s ease 0s;
    aspect-ratio: 1/1;
    object-fit: cover;
    box-sizing: border-box;
    max-width: 100%
}

.recommended-products__item-description {
    position: absolute;
    background-color: #002a6c;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity .2s, transform .35s;
    padding: 0 70px
}

@media (max-width: 768px) {
    .recommended-products__item-description {
        position: static;
        padding: 15px 10px;
        opacity: 1;
        transform: scale(1)
    }
}

.recommended-products__item-description:after {
    height: 2px;
    position: absolute;
    left: 15px;
    width: 0;
    bottom: 16px;
    background: #ffffff80;
    transition: all .3s ease .3s
}

@media (min-width: 768px) {
    .recommended-products__item-description:after {
        content: ""
    }
}

.recommended-products__item-description p {
    margin: 0;
    font-size: 17px;
    line-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
    font-weight: 700;
    letter-spacing: .5;
    padding: 0 0 0 30px;
    position: relative
}

@media (max-width: 768px) {
    .recommended-products__item-description p {
        font-size: 14px;
        line-height: 22px;
        padding: 0
    }
}

.recommended-products__item-description p:before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    content: "+"
}

@media (max-width: 768px) {
    .recommended-products__item-description p:before {
        content: none
    }
}

.products-catalog {
    padding: 80px 0 60px
}

@media (max-width: 768px) {
    .products-catalog {
        padding: 30px 0
    }
}

.product-catalog__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.products-catalog__categories {
    width: 340px;
    margin-bottom: 15px
}

@media (max-width: 1200px) {
    .products-catalog__categories {
        width: 250px
    }
}

@media (max-width: 768px) {
    .products-catalog__categories {
        width: 100%
    }
}

.products-catalog__categories ul {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.products-catalog__categories ul li {
    border-bottom: 1px solid #efefef;
    padding: 8px 0
}

.products-catalog__categories ul li.active a {
    color: #002a6c;
    font-weight: 600
}

.products-catalog__categories ul li a {
    display: block;
    text-transform: capitalize;
    font-size: 18px;
    line-height: 40px;
    color: #212121;
    text-decoration: none
}

.products-catalog__categories ul li a:hover {
    color: #002a6c
}

.products-catalog__list {
    flex: 1
}

.products-catalog__list ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0 0 40px;
    padding: 0
}

.products-catalog__list ul li {
    text-align: center;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px
}

@media (min-width: 576px) {
    .products-catalog__list ul li {
        max-width: 50%
    }
}

@media (min-width: 992px) {
    .products-catalog__list ul li {
        max-width: 33%
    }
}

.products-catalog__item {
    transition: all .3s cubic-bezier(0, 0, .5, 1);
    padding-bottom: 15px
}

.products-catalog__item:hover {
    box-shadow: 0 10px 30px #0003;
    transform: scale3d(1.01, 1.01, 1.01)
}

.products-catalog__item > a {
    display: block;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    position: relative
}

.products-catalog__item img {
    width: 100%;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 100%
}

.products-catalog__item h3 {
    margin: 0;
    text-align: center;
    padding: 12px 12px 0;
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #212121
}

.products-catalog__item h3:hover {
    color: #002a6c
}

@media (max-width: 1200px) {
    .products-catalog__item h3 {
        font-size: 16px
    }
}

@media (max-width: 768px) {
    .products-catalog__item h3 {
        font-size: 15px
    }
}

.products-catalog__item h3 > a {
    color: inherit;
    text-decoration: none
}

.product-catalog__pagination {
    display: flex;
    justify-content: center
}

.product-catalog__pagination a {
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid #bebebe;
    background-color: #fff;
    color: #002a6c;
    line-height: 16px;
    padding: 8px 13px;
    margin: 0 2px;
    font-size: 14px
}

@media (max-width: 768px) {
    .product-catalog__pagination a {
        font-size: 12px
    }
}

.product-catalog__pagination a:first-child {
    align-self: flex-start;
    margin-left: 0;
    padding: 4px
}

.product-catalog__pagination a:last-child {
    margin-right: 0;
    padding: 4px;
    align-self: flex-start
}

.product-catalog__pagination a:hover {
    background-color: #002a6c;
    color: #fff
}

.product-catalog__pagination a.disabled {
    cursor: default;
    color: #fff;
    border: 1px solid #cecece;
    background-color: #cecece
}

.product-catalog__pagination a.active {
    background-color: #002a6c;
    color: #fff
}

.product-intro {
    padding: 50px 0
}

.product-intro__wrapper {
    display: flex;
    flex-wrap: wrap
}

.product-intro__slider {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px
}

@media (min-width: 992px) {
    .product-intro__slider {
        max-width: 50%
    }
}

.product-intro__slider .thumbs-swiper {
    margin-top: 30px
}

.product-intro__slider .swiper-button-prev, .product-intro__slider .swiper-button-next {
    position: absolute;
    top: 50%;
    display: flex;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: #f0f0f0b2;
    cursor: pointer;
    color: #212121;
    z-index: 2
}

@media (max-width: 1200px) {
    .product-intro__slider .swiper-button-prev, .product-intro__slider .swiper-button-next {
        width: 36px;
        height: 36px
    }

    .product-intro__slider .swiper-button-prev svg, .product-intro__slider .swiper-button-next svg {
        width: 14px;
        height: 14px
    }
}

@media (max-width: 768px) {
    .product-intro__slider .swiper-button-prev, .product-intro__slider .swiper-button-next {
        width: 25px;
        height: 25px
    }

    .product-intro__slider .swiper-button-prev svg, .product-intro__slider .swiper-button-next svg {
        width: 12px;
        height: 12px
    }
}

.product-intro__slider .swiper-button-prev:hover, .product-intro__slider .swiper-button-next:hover {
    background: linear-gradient(0deg, #f0f0f033, #f0f0f033), linear-gradient(0deg, #00000080, #00000080);
    color: #fff
}

.product-intro__slider .swiper-button-prev {
    left: 8px
}

.product-intro__slider .swiper-button-prev svg {
    transform: rotate(180deg)
}

.product-intro__slider .swiper-button-next {
    right: 8px
}

.product-intro__slider .main-swiper .swiper-slide > div {
    display: flex;
    max-height: 600px
}

.product-intro__slider .main-swiper img {
    box-sizing: border-box;
    aspect-ratio: 1/1;
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain
}

.product-intro__slider .thumbs-swiper .swiper-slide {
    overflow: hidden;
    box-sizing: border-box;
    opacity: .7;
    transition: all .3s;
    margin: 0;
    position: relative
}

.product-intro__slider .thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 1px solid #002a6c
}

.product-intro__slider .thumbs-swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    max-width: 100%
}

.product-intro__description {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px
}

@media (min-width: 992px) {
    .product-intro__description {
        max-width: 50%
    }
}

@media (max-width: 992px) {
    .product-intro__description {
        margin-top: 30px
    }
}

.product-intro__description h2 {
    margin: 0 0 20px;
    font-size: 26px;
    font-weight: 700;
    color: #212121
}

@media (max-width: 1200px) {
    .product-intro__description h2 {
        font-size: 24px
    }
}

@media (max-width: 992px) {
    .product-intro__description h2 {
        font-size: 22px
    }
}

@media (max-width: 768px) {
    .product-intro__description h2 {
        font-size: 20px
    }
}

.product-intro__description p {
    margin: 0 0 60px
}

@media (max-width: 1200px) {
    .product-intro__description p {
        margin: 0 0 40px
    }
}

@media (max-width: 768px) {
    .product-intro__description p {
        font-size: 14px
    }
}

@media (max-width: 576px) {
    .product-intro__description p {
        margin: 0 0 30px
    }
}

.product-intro__description .inquiry-button {
    cursor: pointer;
    padding: 0 14px;
    min-height: 40px;
    display: flex;
    width: fit-content;
    align-items: center;
    font-size: 15px;
    font-family: inherit;
    font-weight: 700;
    border: none;
    color: #fff;
    background-color: #07953f;
    box-sizing: border-box
}

.product-intro__description .inquiry-button:hover {
    background: linear-gradient(0deg, #ffffff1a, #ffffff1a), #07953f
}

.product-intro__description .inquiry-button > svg {
    fill: #fff;
    margin-left: 15px
}

.product-info__nav {
    align-items: center;
    display: flex;
    justify-content: center;
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    gap: 50px;
    margin-bottom: 55px
}

@media (max-width: 992px) {
    .product-info__nav {
        margin-bottom: 40px
    }
}

.product-info__nav a {
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 25px 20px;
    font-weight: 600;
    font-size: 20px;
    transition: .1s all
}

.product-info__nav a:first-child, .product-info__nav a:hover {
    border-bottom: 2px solid #07953f;
    color: #07953f
}

.product-info h2 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 600;
    color: #212121
}

@media (max-width: 992px) {
    .product-info h2 {
        font-size: 20px
    }
}

@media (max-width: 768px) {
    .product-info h2 {
        font-size: 18px
    }
}

.product-info strong {
    color: #000
}

.product-info p {
    font-size: 18px;
    margin: 0 0 20px
}

.product-info p > a {
    text-decoration: none;
    color: #00f
}

.product-info table {
    border-collapse: collapse;
    max-width: 700px;
    margin: 0 0 20px
}

.product-info th, .product-info td {
    border: .5pt solid #000000;
    color: #000;
    font-size: 10pt;
    padding: 8px 20px
}

.product-info th {
    text-align: left;
    background-color: #f8f8f8
}

.product-info img {
    margin: 0 0 20px;
    display: block;
    max-width: 100%;
    object-fit: contain
}

.product-info__subtile-wrapper {
    padding: 8px 0;
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd
}

.product-info__subtile-wrapper h3 {
    background-color: #ddd;
    color: #333;
    font-weight: 700;
    padding: 8px 10px;
    line-height: 12px;
    margin: 0;
    display: inline-block
}

.more-products {
    padding: 50px 0
}

.more-products h2 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 600;
    color: #212121
}

@media (max-width: 992px) {
    .more-products h2 {
        font-size: 20px
    }
}

@media (max-width: 768px) {
    .more-products h2 {
        font-size: 18px
    }
}

.more-products ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap
}

.more-products ul li {
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%
}

@media (max-width: 992px) {
    .more-products ul li {
        margin-bottom: 20px
    }
}

@media (min-width: 768px) {
    .more-products ul li {
        max-width: 50%
    }
}

@media (min-width: 992px) {
    .more-products ul li {
        max-width: 25%
    }
}

.more-products__item {
    box-sizing: border-box;
    padding: 15px;
    border: 1px solid #E0E0E0;
    transition: all .3s cubic-bezier(0, 0, .5, 1);
    width: 100%
}

.more-products__item:hover {
    box-shadow: 0 10px 30px #0003;
    transform: scale3d(1.01, 1.01, 1.01)
}

.more-products__item img {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover
}

.more-products__item > p {
    min-height: 56px;
    text-align: center;
    margin: 12px 0 0;
    font-size: 18px;
    line-height: 28px;
    color: #212121;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.search {
    padding: 40px 0
}

.search form {
    margin: 0 auto 20px;
    max-width: 650px;
    width: 100%;
    display: flex;
    justify-content: center;
    line-height: 48px
}

.search form input {
    flex-grow: 1;
    padding: 0 20px;
    box-sizing: border-box;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    border-top-right-radius: initial;
    border-bottom-right-radius: initial;
    border-right: none;
    font-size: inherit;
    font-family: inherit
}

.search form button {
    background: #212121;
    color: #fff;
    font-size: 20px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center
}

.search__results-tabs {
    list-style-type: none;
    display: flex;
    margin: 0 auto 12px;
    padding: 0;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #D9D9D9
}

@media (max-width: 768px) {
    .search__results-tabs {
        padding: 0 8px;
        justify-content: flex-start
    }
}

.search__results-tabs button {
    display: inline-block;
    background: transparent;
    border: none;
    min-width: 120px;
    padding: 0 12px;
    line-height: 40px;
    font-family: inherit;
    font-size: inherit;
    color: #8c8c8c;
    text-align: center;
    cursor: pointer;
    text-transform: capitalize
}

@media (max-width: 768px) {
    .search__results-tabs button {
        min-width: initial
    }
}

.search__results-tabs button.active {
    color: #212121;
    border-bottom: 2px solid #333
}

.search__results-count {
    margin: 0
}

.search__results-count strong {
    color: #212121;
    font-size: 20px
}

@media (max-width: 768px) {
    .search__results-count strong {
        font-size: 16px
    }
}

.search__results-count span {
    color: #666;
    font-size: 16px
}

@media (max-width: 768px) {
    .search__results-count span {
        font-size: 14px
    }
}

.search__results-list {
    list-style-type: none;
    margin: 0;
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap
}

.search__results-list li {
    box-sizing: border-box;
    padding: 0 15px;
    width: 100%;
    max-width: 50%;
    margin-bottom: 20px
}

@media (min-width: 992px) {
    .search__results-list li {
        max-width: 25%
    }
}

.search__results-list li > a {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%
}

.search__results-list li > a:hover img {
    transform: scale(1.05)
}

.search__results-list li img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    display: block;
    max-width: 100%
}

.search__results-list li h2 {
    margin: 0;
    font-size: 24px;
    text-align: center;
    color: #212121;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 400
}

@media (max-width: 768px) {
    .search__results-list li h2 {
        font-size: 20px
    }
}

@media (max-width: 576px) {
    .search__results-list li h2 {
        font-size: 16px
    }
}

.search__results-list li h2:hover {
    color: #002a6c
}

.search__results-list li h2 a {
    text-decoration: none;
    color: inherit
}

.search__results-fallback {
    width: 100%;
    text-align: center;
    font-size: 20px;
    padding: 160px 0
}

.search__results-more {
    border: none;
    box-sizing: border-box;
    margin: 20px auto;
    padding: 0 20px;
    min-width: 250px;
    min-height: 45px;
    color: #fff;
    background-color: #002a6c;
    font-weight: 600;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .17s linear, background-color .17s linear, border-color .17s linear
}

.search__results-more .load {
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 3px solid white;
    border-top: 3px solid black;
    animation: spin 2s linear infinite;
    display: none
}

.search__results-more--active .load {
    display: block
}

.search__results-more--active span:first-child {
    display: none
}

@keyframes spin {
    0% {
        transform: rotate(0)
    }
    to {
        transform: rotate(360deg)
    }
}

.privacy-policy {
    padding: 40px 0
}

@media (max-width: 992px) {
    .privacy-policy {
        padding: 20px 0
    }
}

.privacy-policy .container div {
    margin-bottom: 40px
}

.privacy-policy .container div:last-child {
    margin: 0
}

.privacy-policy .container div p:last-child {
    margin: 0
}

.privacy-policy h1, h2 {
    font-weight: 700;
    margin: 0 0 20px;
    color: #3d3d3d
}

.privacy-policy h1 {
    text-align: center;
    font-size: 26px;
    line-height: 34px
}

@media (max-width: 768px) {
    .privacy-policy h1 {
        font-size: 22px
    }
}

.privacy-policy h2 {
    font-size: 24px;
    line-height: 32px
}

@media (max-width: 768px) {
    .privacy-policy h2 {
        font-size: 20px
    }
}

.privacy-policy p {
    margin: 0 0 10px;
    line-height: 24px;
    color: #3d3d3d
}

@media (max-width: 768px) {
    .privacy-policy p {
        font-size: 14px
    }
}

.privacy-policy p a {
    text-decoration: none;
    color: #00f
}

.privacy-policy .privacy-policy__time {
    text-decoration: underline
}

.privacy-policy .privacy-policy__time:first-of-type {
    margin-bottom: 5px
}

.privacy-policy ul {
    margin: 0 0 10px
}

.privacy-policy ul li {
    color: #3d3d3d;
    line-height: 24px
}

@media (max-width: 768px) {
    .privacy-policy ul li {
        font-size: 14px
    }
}

.cookie-policy-message {
    display: none;
    background: #fff;
    color: #666;
    bottom: 0;
    box-shadow: 0 -4px 16px #00000029;
    left: 0;
    padding: 32px 24px 16px;
    position: fixed;
    right: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center
}

@media (max-width: 768px) {
    .cookie-policy-message {
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        padding-top: 24px
    }
}

.cookie-policy-message--active {
    display: flex
}

@media (max-width: 768px) {
    .cookie-policy-message--active {
        display: block
    }
}

.cookie-policy-message p {
    margin: 0;
    font-size: 12px;
    line-height: 18px
}

@media (max-width: 768px) {
    .cookie-policy-message p {
        font-size: 14px
    }
}

.cookie-policy-message__close {
    cursor: pointer;
    position: absolute;
    width: 16px;
    height: 16px;
    border: none;
    display: block;
    background: transparent;
    padding: 0;
    right: 20px;
    top: 12px
}

.cookie-policy-message__close:before, .cookie-policy-message__close:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    left: 50%;
    transform: translate(-50%);
    background-color: #999
}

.cookie-policy-message__close:before {
    transform: translate(-50%) rotate(-45deg)
}

.cookie-policy-message__close:after {
    transform: translate(-50%) rotate(45deg)
}

.cookie-policy-message__buttons {
    display: flex;
    font-size: 12px;
    margin-left: 40px
}

@media (max-width: 768px) {
    .cookie-policy-message__buttons {
        justify-content: space-evenly;
        font-size: 14px;
        margin-top: 12px;
        margin-left: 0
    }
}

.cookie-policy-message__button-personalize, .cookie-policy-message__button-accept {
    font-weight: 400;
    border: none;
    font-family: inherit;
    white-space: nowrap;
    cursor: pointer;
    font-size: inherit;
    line-height: 18px;
    padding: 4px 12px
}

@media (min-width: 768px) {
    .cookie-policy-message__button-personalize, .cookie-policy-message__button-accept {
        min-width: 137px
    }
}

@media (max-width: 768px) {
    .cookie-policy-message__button-personalize, .cookie-policy-message__button-accept {
        width: 100%
    }
}

.cookie-policy-message__button-personalize {
    background-color: #fff;
    border: 1px solid #002a6c;
    color: #002a6c;
    margin-right: 16px
}

.cookie-policy-message__button-accept {
    color: #fff;
    background-color: #002a6c
}

.cookie-policy-settings h2 {
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    font-weight: 700;
    color: #212121
}

@media (max-width: 768px) {
    .cookie-policy-settings h2 {
        font-size: 20px
    }
}

.cookie-policy-settings h3 {
    font-weight: 700;
    color: #212121;
    font-size: 14px;
    margin: 15px 0;
    flex: 1
}

@media (max-width: 768px) {
    .cookie-policy-settings h3 {
        font-size: 12px
    }
}

.cookie-policy-settings p {
    margin: 0;
    color: #666;
    line-height: 18px;
    font-size: 14px
}

@media (max-width: 768px) {
    .cookie-policy-settings p {
        font-size: 12px
    }
}

.cookie-policy-settings__item {
    display: flex;
    align-items: center
}

.cookie-policy-settings__toggle-btn {
    position: relative;
    background-color: #ccc;
    border: none;
    border-radius: 16px;
    box-sizing: border-box;
    color: #222;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    transition: all .25s;
    height: 22px;
    width: 40px
}

.cookie-policy-settings__toggle-btn:after {
    position: absolute;
    content: "";
    background-color: #fff;
    box-shadow: 0 0 2px #0000001f, 0 3px 3px #0000003d;
    height: 16px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    border-radius: 50%;
    transition: all .25s
}

.cookie-policy-settings__toggle-btn--checked {
    background-color: #ff472e
}

.cookie-policy-settings__toggle-btn--checked:after {
    left: 21px
}

.cookie-policy-settings__wrapper {
    display: flex;
    padding: 16px 0 0
}

.cookie-policy-settings__save-btn {
    min-width: unset;
    flex: 1;
    background: #002a6c;
    border: none;
    color: #fff;
    line-height: 24px;
    font-size: 14px;
    padding: 3px 12px;
    text-align: center;
    cursor: pointer
}

@media (max-width: 768px) {
    .cookie-policy-settings__save-btn {
        font-size: 12px
    }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1440px;
    box-sizing: border-box
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1440px
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden
}

@font-face {
    font-family: Montserrat;
    src: url(/local/templates/chinacleanroom/src/fonts/Montserrat-Regular.woff2) format("woff2"), url(/local/templates/chinacleanroom/src/fonts/Montserrat-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Montserrat;
    src: url(/local/templates/chinacleanroom/src/fonts/Montserrat-Bold.woff2) format("woff2"), url(/local/templates/chinacleanroom/src/fonts/Montserrat-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

body.popup-open {
    overflow: hidden
}

.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all .4s ease
}

.popup--active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

.popup.popup--cookies .popup__content {
    max-width: 768px
}

.popup__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00000080
}

.popup__content {
    width: 50%;
    max-height: calc(100% - 80px);
    padding: 40px;
    background-color: #fff;
    box-shadow: 2px 3px 10px #0000001a;
    border-radius: 8px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto
}

.popup__close {
    cursor: pointer;
    position: absolute;
    width: 42px;
    height: 42px;
    border: none;
    display: block;
    background: transparent;
    padding: 0;
    top: 30px;
    right: 7%
}

.popup__close:before, .popup__close:after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    left: 50%;
    transform: translate(-50%);
    background-color: #999
}

.popup__close:before {
    transform: translate(-50%) rotate(-45deg)
}

.popup__close:after {
    transform: translate(-50%) rotate(45deg)
}

.breadcrumbs {
    position: relative
}

.breadcrumbs:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0003
}

.breadcrumbs img {
    width: 100%;
    max-width: 100%;
    display: block;
    box-sizing: border-box
}

.breadcrumbs__wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

@media (max-width: 768px) {
    .breadcrumbs__wrapper {
        text-align: center
    }
}

.breadcrumbs__wrapper .container {
    position: relative;
    z-index: 1
}

.breadcrumbs__wrapper h1 {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-shadow: 2px 2px 4px #666666
}

@media (max-width: 768px) {
    .breadcrumbs__wrapper h1 {
        font-size: 30px;
        line-height: 1
    }
}

@media (max-width: 576px) {
    .breadcrumbs__wrapper h1 {
        font-size: 26px
    }
}

.breadcrumbs__wrapper p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 15px 0 0;
    font-size: 15px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-shadow: 2px 2px 4px #666
}

@media (max-width: 768px) {
    .breadcrumbs__wrapper p {
        margin-top: 10px;
        justify-content: center
    }
}

.breadcrumbs__wrapper p a {
    color: #fff;
    text-shadow: 2px 2px 4px #666;
    text-decoration: none;
    position: relative;
    margin-right: 25px
}

.breadcrumbs__wrapper p a:last-child {
    margin: 0
}

.breadcrumbs__wrapper p a:first-child {
    padding-left: 20px
}

.breadcrumbs__wrapper p a:first-child:before {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    left: 0;
    background-image: url(/local/templates/chinacleanroom/src/images/icons/home.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%)
}

.breadcrumbs__wrapper p a:not(:last-child):after {
    content: ">";
    position: absolute;
    right: -18px;
    top: 5%
}

.fadeInUp {
    transition: all .6s ease-out;
    opacity: 0;
    transform: translateY(30px)
}

.fadeInUp.show {
    opacity: 1;
    transform: translateY(0)
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 0;
    color: #666;
    background-color: #fff;
    font-size: 16px
}

body * {
    outline: none !important;
    line-height: 1.4
}

.chat-bot__toggle{
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #002A6C;
    border: 1px solid #ffffff;
    width: auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    border-radius: 100px;
    color: #fff;
    font-size: 18px;
}

.chat-bot {
    position: fixed;
    bottom: 110px;
    right: 20px;
    width: 420px;
    display: none;
    flex-direction: column;
    z-index: 110;
}

.chat-bot__wrapper{
    background: #fff;
    width: 100%;
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .14);
    border-radius: 8px;
    overflow: hidden;
}
.chat-bot__header {
    display: flex;
    justify-content: space-between;
    background: #002A6C;
    padding: 10px 18px;
    align-items: center;
}

.chat-bot__status{
    display: flex;
}

.chat-bot__circle {
    width: 8px;
    height: 8px;
    background-color: lawngreen;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 6px;
}

.chat-bot__status-text{
    color: #fff;
}

.chat-bot__image{
    display: flex;
    align-items: center;
    gap: 8px;
}

.chat-bot__close{
    cursor: pointer;
}

.chat-bot__messages{
    padding: 20px 30px;
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-bot__message{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.chat-bot__time{
    color: #909090;
    line-height: 22px;
    font-size: 14px;
}

.chat-bot__text{
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 400;
    background: #eee;
    border-radius: 6px;
    line-height: 22px;
    padding: 7px 12px;
    max-width: 70%;
    display: inline-block;
    word-break: break-word;
}

.chat-bot__input-wrapper {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
    flex-shrink: 0;
}

.chat-bot__input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    margin-right: 10px;
}

.chat-bot__send {
    background-color: #002A6C;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.chat-bot__form-message {
    background: #f4f6f9;
}

.chat-bot__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-bot__label {
    font-size: 14px;
    color: #333;
    display: flex;
    flex-direction: column;
}

.chat-bot__label--flex {
    display: flex;
}


.chat-bot__required {
    color: red;
    margin-right: 5px;
}

.chat-bot__input-field {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    margin-top: 4px;
}

.chat-bot__submit-btn {
    background: #7a6ff0;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    align-self: center;
    width: 120px;
}

.chat-bot__submit-btn:hover {
    background: #665bd3;
}

.cookie-policy-message {
    display: none;
    background: #ffffff;
    color: #666666;
    bottom: 0;
    box-shadow: 0 -4px 16px 0 rgba(0, 0, 0, .16);
    left: 0;
    padding: 32px 24px 16px;
    position: fixed;
    right: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.cookie-policy-message--active {
    display: flex;
}

.cookie-policy-message p {
    margin: 0;
    font-size: 12px;
    line-height: 18px;
}


.cookie-policy-message__close{
    cursor: pointer;
    position: absolute;
    width: 16px;
    height: 16px;
    border: none;
    display: block;
    background: transparent;
    padding: 0;
    right: 20px;
    top: 12px;
}

.cookie-policy-message__close::before,
.cookie-policy-message__close::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #999999;
}

.cookie-policy-message__close::before{
    transform: translateX(-50%) rotate(-45deg);
}

.cookie-policy-message__close::after {
    transform: translateX(-50%) rotate(45deg);
}

.cookie-policy-message__buttons {
    display: flex;
    font-size: 12px;
    margin-left: 40px;
}

.cookie-policy-message__button-personalize, .cookie-policy-message__button-accept {
    font-weight: 400;
    border: none;
    font-family: inherit;
    white-space: nowrap;
    cursor: pointer;
    font-size: inherit;
    line-height: 18px;
    padding: 4px 12px;
}

.cookie-policy-message__button-personalize {
    background-color: #ffffff;
    border: 1px solid #002a6c;
    color:#002a6c;
    margin-right: 16px;
}

.cookie-policy-message__button-accept {
    color: #ffffff;
    background-color: #002a6c;
}

.cookie-policy-settings h2 {
    margin: 0;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    font-weight: 700;
    color: #212121;
}


.cookie-policy-settings h3 {
    font-weight: 700;
    color: #212121;
    font-size: 14px;
    margin: 15px 0;
    flex: 1;
}

.cookie-policy-settings p {
    margin: 0;
    color: #666666;
    line-height: 18px;
    font-size: 14px;
}


.cookie-policy-settings__item {
    display: flex;
    align-items: center;
}

.cookie-policy-settings__toggle-btn {
    position: relative;
    background-color: #cccccc;
    border: none;
    border-radius: 16px;
    box-sizing: border-box;
    color: #222222;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    transition: all .25s;
    height: 22px;
    width: 40px;
}

.cookie-policy-settings__toggle-btn::after {
    position: absolute;
    content: '';
    background-color: #ffffff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .12), 0 3px 3px 0 rgba(0, 0, 0, .24);
    height: 16px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    border-radius: 50%;
    transition: all .25s;
}

.cookie-policy-settings__toggle-btn--checked {
    background-color: #ff472e;
}

.cookie-policy-settings__toggle-btn--checked::after {
    left: 21px;

}

.cookie-policy-settings__wrapper {
    display: flex;
    padding: 16px 0 0 0;
}

.cookie-policy-settings__save-btn {
    min-width: unset;
    flex: 1;
    background: #002a6c;
    border: none;
    color: #ffffff;
    line-height: 24px;
    font-size: 14px;
    padding: 3px 12px;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 768px) {
    .cookie-policy-settings__save-btn,
    .cookie-policy-settings h3,
    .cookie-policy-settings p{
        font-size: 12px;
    }

    .cookie-policy-message {
        border-top-right-radius: 15px;
        border-top-left-radius: 15px;
        padding-top: 24px;
    }

    .cookie-policy-message--active {
        display: block;
    }

    .cookie-policy-message p {
        font-size: 14px;
    }

    .cookie-policy-message__buttons{
        justify-content: space-evenly;
        font-size: 14px;
        margin-top: 12px;
        margin-left: 0;
    }

    .cookie-policy-message__button-personalize, .cookie-policy-message__button-accept{
        width: 100%;
    }

    .cookie-policy-settings h2{
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .cookie-policy-message__button-personalize, .cookie-policy-message__button-accept {
        min-width: 137px;
    }

}

