:root {
    --primary-color: #e60013;
    --secondary-color: #2366be;
    --tertiary-color: #3e3a39;
    --title-color: #333;
    --text-color: #666;
    --tip-color: #999;
    --font-w-color: #fff;
    --font-g-color: #ccc;
    --bg-page: #f5f5f5;
    --bg-color: rgba(0, 0, 0, .8);
    --bg-color-3: rgba(0, 0, 0, .3);
    --bg-liner-45: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0) 75%);
    --bg-w-liner-45: linear-gradient(45deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 50%);
    --bg-w-color: #fff;
    --bg-p-color: rgba(230, 0, 19, 0.1);
    --bg-s-color: rgba(35, 102, 190, 0.1);
    --bg-s-color-3: rgba(35, 102, 190, 0.3);
    --bg-p-color-5: rgba(230, 0, 19, 0.5);
    --bg-s-color-5: rgba(35, 102, 190, 0.5);
    --bg-p-color-8: rgba(230, 0, 19, 0.8);
    --bg-s-liner: linear-gradient(to right, rgba(35, 102, 190, 0.7), rgba(255, 255, 255, 0) 50%);
    --bg-s-liner-45: linear-gradient(45deg, rgba(35, 102, 190, 0.5), rgba(255, 255, 255, 0) 75%);
    --module-padding: 2rem;
    --font-size: 12px;
    --container-width: calc(100% - 1.5rem);
    --counter-size: 3rem;
    --items-x: clamp(1.5rem, calc(1.125rem + 0.78125vw), 1.75rem);
    --items-y: clamp(5.75rem, calc(2.375rem + 7.03125vw), 8rem);
    --line-width: 2px;
    --line-radius: 1rem;
    --counter-font-size: 1.25rem;
    --box-showdown: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    :root {
        --font-size: 13px;
        --container-width: 720px;
    }
}

@media (min-width: 992px) {
    :root {
        --font-size: 14px;
        --container-width: 960px;
        --module-padding: 3rem;
    }
}

@media (min-width: 1200px) {
    :root {
        --font-size: 15px;
        --container-width: 1140px;
        --module-padding: 4rem;
    }
}

@media (min-width: 1500px) {
    :root {
        --font-size: 16px;
        --container-width: 1460px;
    }
}

/* @font-face {
    font-family: 'pht';
    src: url(../font/pht.woff)format(woff),
        url(../font/pht.woff2)format(woff2)
} */

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

a {
    text-decoration: none;
}

ol,
ul {
    list-style: none;
}

html {
    font-size: var(--font-size);
    line-height: 1.5em;
}

body {
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Hiragino Sans GB,Microsoft YaHei UI,Microsoft YaHei,Source Han Sans CN,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
    font-size: 1rem;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: transparent;
    width: 100%;
    height: 5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.header.active {
    background-color: var(--bg-w-color);
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.header.open {
    background-color: var(--bg-w-color);
    box-shadow: none;
}

.header__logo {
    height: 4rem;
}

.header__logo__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header__navi {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 0;
    overflow-y: scroll;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    background-color: var(--bg-w-color);
}

.header.open .header__navi {
    height: calc(100vh - 5rem);
    padding: 2rem;
}

.header__navi__menu {
    display: flex;
    flex-direction: column;
}

.header__navi__menu a .mdui-icon {
    display: none;
}

.header__navi__menu a:hover {
    color: var(--primary-color);
}

.menu__item__link {
    display: block;
    line-height: 3rem;
    padding: 0 1rem;
    font-size: 1.25rem;
    color: var(--tertiary-color);
}

.lang_en .menu__item__link {
    text-transform: uppercase;
}

.menu__item__submenu {
    padding: 0 1rem;
}

.menu__item__submenu a {
    font-size: 1rem;
    color: var(--tertiary-color);
    position: relative;
    padding-left: 1rem;
    line-height: 2rem;
}

.menu__item__submenu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    width: 8px;
    height: 1px;
    background-color: var(--tertiary-color);
}

.header__icon {
    display: block;
    width: 35px;
    height: 25px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.header__icon span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 5px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.header__icon span:nth-child(1) {
    top: 0px;
}

.header__icon span:nth-child(2),
.header__icon span:nth-child(3) {
    top: 10px;
}

.header__icon span:nth-child(4) {
    top: 20px;
}

.header.open .header__icon span:nth-child(1) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.header.open .header__icon span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header.open .header__icon span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header.open .header__icon span:nth-child(4) {
    top: 10px;
    width: 0%;
    left: 50%;
}

.header.open .default__btn {
    margin-top: 2rem;
}

.default__btn {
    background: var(--secondary-color);
    border: none;
    color: var(--font-w-color);
    outline: none;
    padding: 0.75rem 1.5rem;
    position: relative;
    transform: translateZ(0);
    transition: color 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.default__btn .mdui-icon {
    font-size: 1.25rem;
}

.default__btn::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: var(--primary-color);
    content: '';
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
    z-index: -1;
}

.default__btn:hover:before {
    transform: scaleX(1);
}

@media (min-width: 1200px) {
    .header {
        height: 8rem;
    }

    .header.active {
        height: 5rem;
        padding: 0 1.5rem;
    }

    .header__navi {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: 5rem;
        background-color: transparent;
        overflow-y: unset;
    }

    .header__navi__menu {
        height: 100%;
        flex-direction: row;
    }

    .menu__item {
        position: relative;
    }

    .menu__item__link {
        display: block;
        height: 100%;
        font-size: 1rem;
        line-height: 5rem;
        padding: 0 1rem;
        color: var(--font-w-color);
    }

    .header.active .menu__item__link {
        color: var(--tertiary-color);
    }

    .header__navi__menu a .mdui-icon {
        font-size: 1rem;
        opacity: 0.6;
        display: inline-block;
    }

    .menu__item__submenu {
        position: absolute;
        top: 120%;
        padding: 1rem 0;
        width: 10rem;
        background-color: var(--bg-w-color);
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        -ms-transition: .5s;
        -o-transition: .5s;
    }

    .lang_en .menu__item__submenu {
        width: 13rem;
    }

    .header__navi__menu a::before {
        display: none;
    }

    .menu__item__submenu .menu__item__submenu {
        left: 100%;
    }

    .header__navi__menu li:hover>a {
        color: var(--primary-color);
    }

    .header__navi__menu li:hover>.menu__item__submenu {
        opacity: 1;
        visibility: visible;
        top: 100%;
    }

    .menu__item__submenu li:hover>.menu__item__submenu {
        top: 0;
    }

    .menu__item__submenu li {
        position: relative;
    }

    .menu__item__submenu li a {
        display: block;
        color: var(--tertiary-color);
        padding: 0.5rem 1rem;
        font-size: .875rem;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
    }

    .lang_en .menu__item__submenu a {
        text-transform: uppercase;
    }

    .menu__item__submenu li a:hover {
        background-color: var(--primary-color);
        color: var(--font-w-color);
    }

    .header__icon {
        display: none;
    }
}

.index__banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.index__banner.banner1 {
    background-image: url('../images/banner1.jpg');
}

.index__banner.banner2 {
    background-image: url('../images/banner2.jpg');
}

.index__banner.banner3 {
    background-image: url('../images/banner3.jpg');
}

.index__banner.banner4 {
    background-image: url('../images/banner4.jpg');
}

.index__banner.banner5 {
    background-image: url('../images/banner5.jpg');
}

.index__banner__content {
    height: 30rem;
    width: calc(100% - 3rem);
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index__banner__content.center__content {
    align-items: center;
    text-align: center;
}

.index__banner__content.right__content {
    align-items: flex-end;
    text-align: right;
}

.index__banner__line {
    width: 4rem;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.index__banner__title {
    font-size: 2rem;
    line-height: 1.25em;
    color: var(--font-w-color);
    margin: 1.25rem 0 1rem 0;
}

.index__banner__tips {
    font-size: 1.25rem;
    line-height: 1.25em;
    color: var(--font-w-color);
}

.index__banner__btn {
    margin-top: 2.5rem;
}

.prev__btn,
.next__btn {
    display: none;
}


@media (min-width: 768px) {
    .index__banner__content {
        height: 35rem;
    }
}

@media (min-width: 992px) {
    .index__banner__content {
        height: 40rem;
        width: calc(100% - 14rem);
    }

    .index__banner__title {
        font-size: 3rem;
        margin: 2rem 0 1.5rem 0;
    }

    .index__banner__tips {
        font-size: 1.5rem;
    }

    .prev__btn,
    .next__btn {
        position: absolute;
        top: 50%;
        width: 3rem;
        height: 3rem;
        transform: translateY(-50%);
        z-index: 99;
        cursor: pointer;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        opacity: 0.6;
        border-radius: 1.5rem;
        -webkit-border-radius: 1.5rem;
        -moz-border-radius: 1.5rem;
        -ms-border-radius: 1.5rem;
        -o-border-radius: 1.5rem;
    }

    .prev__btn:hover,
    .next__btn:hover {
        opacity: 1;
        color: var(--font-w-color);
        background-color: var(--primary-color);
    }

    .prev__btn {
        left: 2rem;
    }

    .next__btn {
        right: 2rem;
    }

    .swiper .mdui-icon {
        font-size: 3rem !important;
    }

    .prev__btn .mdui-icon {
        margin-left: -3px;
    }

    .next__btn .mdui-icon {
        margin-right: -3px;
    }
}

@media (min-width: 1200px) {
    .index__banner__content {
        height: 45rem;
    }
}

@media (min-width: 1500px) {
    .index__banner__content {
        height: 50rem;
    }

    .index__banner__title {
        font-size: 3.5rem;
        line-height: 1em;
        margin: 2rem 15rem 1.5rem 0;
    }

    .index__banner__tips {
        font-size: 2rem;
        line-height: 1em;
    }
}



.module {
    padding: var(--module-padding) 0;
}

.index__about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.index__about__img {
    height: 30rem;
    width: 100%;
    flex: 0 0 auto;
    object-fit: cover;
}

.index__about__content {
    padding: 2rem 0 0 0;
}

.index__tip {
    color: var(--primary-color);
    display: flex;
    gap: 0.2rem;
    align-items: center;
}

.index__tip img {
    height: 1rem;
}

.index__title {
    font-size: 2rem;
    line-height: 1.25em;
    margin: 1.5rem auto;
    color: var(--title-color);
}

.lang_en .index__title {
    max-width: 60rem;
}

.index__about__text {
    color: var(--text-color);
    margin-bottom: 2rem;
}

.index__about__point {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    line-height: 2.5rem;
}

.index__about__point .mdui-icon {
    color: var(--primary-color);
}

.index__about__btn {
    margin-top: 2rem;
}

.index__count {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bg-s-color);
    padding: 1rem;
    margin-top: var(--module-padding);
}

.index__count__item {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    padding: 1rem;
}

.index__count__icon {
    width: 4rem;
    height: 4rem;
}

.index__count__content {
    padding-left: 1rem;
}

.index__count__number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--title-color);
    line-height: 1em;
    margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
    .index__title {
        font-size: 2.5rem;
    }

    .index__about {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .index__about__img {
        height: 31.25rem;
        width: 38.75rem;
    }

    .index__about__content {
        padding: 0 0 0 3rem;
    }

    .index__count {
        padding: 3rem;
    }

    .index__count__item {
        flex: 0 0 25%;
        padding: 0;
    }

    .index__count__icon {
        width: 5rem;
        height: 5rem;
    }

    .index__count__number {
        font-size: 3rem;
    }
}

.index__count__text {
    color: var(--text-color);
}

.index__product {
    background-image: url('../images/productBG.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index__product .index__tip,
.index__product .index__title {
    text-align: center;
    justify-content: center;
}

.index__product .index__title {
    color: var(--font-w-color);
}

.index__product__content {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.index__product__box {
    flex: 0 0 auto;
    width: 100%;
    padding: 2rem 0 2rem 2rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 20rem;
    color: var(--font-w-color);
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .index__product__box {
        width: calc(50% - 1rem);
    }
}

.index__product__box::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 4rem;
    z-index: -1;
}

.index__product__box:nth-child(1)::before {
    background-color: var(--bg-s-color-5);
}

.index__product__box:nth-child(2)::before {
    background-color: var(--bg-p-color-5);
}

.index__product__main {
    flex: 0 0 auto;
    width: calc(100% - 17rem);
}

.index__product__title {
    font-size: 1.5rem;
    line-height: 1em;
}

.index__product__text {
    margin: 1.5rem 0;
}

.index__link {
    color: var(--font-w-color);
    display: flex;
    align-items: center;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.index__link .mdui-icon {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.index__link:hover .mdui-icon {
    margin-left: 0.5rem;
}

.index__product__img {
    width: 15rem;
    height: 15rem;
    object-fit: contain;
    right: -4rem;
    top: 2.5rem;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.index__product__box:hover .index__product__img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.index__top {
    display: flex;
    flex-direction: column;
}

.index__application {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 2rem;
}

.index__application__item {
    flex: 0 0 auto;
    position: relative;
    height: 25rem;
}

.index__application__item:nth-child(1),
.index__application__item:nth-child(2),
.index__application__item:nth-child(3),
.index__application__item:nth-child(4) {
    width: calc(50% - 0.6rem);
}

.index__application__item:nth-child(5) {
    width: 100%;
}

@media (min-width: 992px) {
    .index__product__title {
        font-size: 2rem;
    }

    .index__product__box {
        height: 25rem;
    }

    .index__product__main {
        width: calc(100% - 22rem);
    }

    .index__product__img {
        width: 20rem;
        height: 20rem;
    }

    .index__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .index__application__item:nth-child(1),
    .index__application__item:nth-child(2),
    .index__application__item:nth-child(3) {
        width: calc(33.333333333% - 0.8rem);
    }

    .index__application__item:nth-child(4),
    .index__application__item:nth-child(5) {
        width: calc(50% - 0.6rem);
    }
}

.index__application__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.index__application__overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3;
    color: var(--font-w-color);
    padding: 2rem;
    overflow: hidden;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.index__application__content {
    position: absolute;
    width: calc(100% - 4rem);
    top: 17.25rem;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.index__application__title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.index__application__title img {
    width: 4rem;
    height: 4rem;
}

.index__application__border {
    border: 2px solid var(--primary-color);
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    .index__application__item:hover .index__application__overlay,
    .index__application__item:hover .index__application__img {
        top: -0.5rem;
        left: -0.5rem;
    }
    
    .index__application__item:hover .index__application__overlay {
        background-color: rgba(0, 0, 0, .8);
    }
    
    .index__application__item:hover .index__application__content {
        top: 2rem;
    }
}

.index__news {
    background-color: var(--bg-s-color);
}

.index__news__list {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.index__news__item {
    flex: 0 0 auto;
    width: 100%;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.index__news__item:hover {
    transform: translateY(-1rem);
    -webkit-transform: translateY(-1rem);
    -moz-transform: translateY(-1rem);
    -ms-transform: translateY(-1rem);
    -o-transform: translateY(-1rem);
}

@media (min-width: 768px) {
    .index__news__item {
        width: calc(50% - 0.6rem);
    }
}

@media (min-width: 992px) {
    .index__news__item {
        width: calc(33.33333333% - 0.8rem);
    }
}

.index__news__img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    vertical-align: middle;
}

.index__news__content {
    padding: 1.5rem;
    background-color: var(--bg-w-color);
}

.index__news__date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tip-color);
}

.index__news__title {
    margin: 1rem 0;
    font-size: 1.25rem;
    line-height: 1.5em;
    color: var(--title-color);
    text-align: justify;
    overflow: hidden;
    height: 3em;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.index__news .index__link {
    color: var(--tip-color);
}

.index__news .index__link:hover {
    color: var(--primary-color);
}

.footer {
    background-color: var(--tertiary-color);
}

.footer__content {
    padding-top: 4rem;
    color: var(--font-g-color);
    margin-bottom: 2rem;
    display: none;
}

.footer__content__main,
.footer__content__secondary,
.footer__content__third {
    flex: 0 0 auto;
}

.footer__content__main {
    width: 40%;
    padding-right: 8rem;
}

.footer__content__logo {
    height: 3.5rem;
}

.footer__context__text {
    margin-top: 1.5rem;
    font-size: .875rem;
}

.footer__content__secondary {
    width: 20%;
}

.footer__content__third {
    width: 40%;
    padding-left: 4rem;
}

.footer__content__title {
    position: relative;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
}

.footer__content__title::after {
    content: '';
    position: absolute;
    width: 2rem;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    bottom: 1rem;
    left: 0;
}

.footer__content__link {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer .index__link {
    color: var(--font-g-color);
    font-size: .875rem;
    flex: 0 0 auto;
    width: calc(50% - 0.5rem);
    text-transform: uppercase;
}

.footer .index__link .mdui-icon {
    font-size: 1.25rem;
}

.footer .index__link:hover {
    color: var(--primary-color);
}

.footer__content__contact {
    font-size: .875rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer__line {
    height: 0;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: var(--font-g-color);
}

@media (min-width: 992px) {
    .footer__content {
        display: flex;
    }

    .footer__line {
        width: 100%;
        height: 1px;
        background-color: var(--font-g-color);
    }

    .footer__copyright {
        flex-direction: row;
    }
}

.footer__copyright__icp {
    color: var(--font-g-color);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.footer__copyright__icp:hover {
    color: var(--primary-color);
}

.page__banner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 15rem;
    padding-top: 5rem;
    display: flex;
    align-items: center;
    color: var(--tertiary-color);
    position: relative;
}

@media (min-width: 768px) {
    .page__banner {
        height: 20rem;
    }
}

@media (min-width: 992px) {
    .page__banner {
        height: 25rem;
    }
}

.page__banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-w-liner-45);
}

.page__banner.banner1 {
    background-image: url('../images/pageBanner1.jpg');
}

.page__banner.banner2 {
    background-image: url('../images/pageBanner2.jpg');
}

.page__banner.banner3 {
    background-image: url('../images/pageBanner3.jpg');
}

.page__banner.banner4 {
    background-image: url('../images/pageBanner4.jpg');
}

.page__banner.banner5 {
    background-image: url('../images/pageBanner5.jpg');
}

.page__banner.banner6 {
    background-image: url('../images/pageBanner6.jpg');
}

.page__banner__title {
    padding-bottom: 2rem;
    position: relative;
    line-height: 1em;
    margin: 0;
}

.page__banner__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 1rem;
    width: 2rem;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.page__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: .875rem;
    position: relative;
}

.page__nav .mdui-icon {
    font-size: 1.25rem;
}

.page__nav a {
    color: var(--tertiary-color);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    text-transform: uppercase;
}

.page__nav a:hover {
    color: var(--primary-color);
}

.lang_en .page__nav span {
    text-transform: uppercase;
}

.about__profile {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about__profile__content {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.page__title {
    font-size: 2rem;
    position: relative;
    color: var(--title-color);
    line-height: 1em;
    padding-bottom: 3rem;
    text-transform: uppercase;
}

.page__title::after {
    content: '';
    position: absolute;
    width: 4rem;
    height: 6px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    background-color: var(--primary-color);
    left: 0;
    bottom: 1.5rem;
}

.page__title.center {
    text-align: center;
}

.page__title.center::after {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.page__title.right {
    text-align: right;
}

.page__title.right::after {
    right: 0;
    left: auto;
}

.about__profile__text {
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.5rem;
    text-align: justify;
}

.about__profile__box {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.about__profile__item {
    flex: 0 0 auto;
    width: calc(50% - 1rem);
    padding: 2rem;
    font-size: 1.125rem;
}

.about__profile__item:nth-child(1) {
    background-color: var(--bg-s-color);
    color: var(--secondary-color);
}

.about__profile__item:nth-child(2) {
    background-color: var(--bg-p-color);
    color: var(--primary-color);
}

.about__profile__item img {
    width: 5rem;
    margin-bottom: 1rem;
}

.about__profile__img {
    flex: 0 0 auto;
    width: 100%;
    display: flex;
    gap: 2rem;
}

.about__profile__img img {
    width: calc(50% - 1rem);
    height: 30rem;
    object-fit: cover;
}

@media (min-width: 992px) {
    .about__profile {
        gap: 5rem;
    }

    .about__profile__content {
        width: calc(100% - 40rem);
    }

    .about__profile__img {
        width: 35rem;
    }

    .about__profile__img img:last-child {
        margin-top: 4rem;
    }

    .about__profile__img img {
        height: 35rem;
    }
}

.about__contact {
    background-image: url('../images/aboutBG.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about__contact__content {
    text-align: center;
    color: var(--font-w-color);
    max-width: 55rem;
    margin: auto;
}

.lang_en .about__contact__content {
    max-width: 58rem;
}

.about__contact__content a {
    margin-top: 2rem;
}

.about__branch {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
}

.about__branch__box {
    flex: 0 0 auto;
    width: 100%;
}

.about__branch__gallery {
    display: flex;
    flex-direction: row;
    margin-top: 1rem;
}

.about__branch__img {
    width: 60%;
    height: 20rem;
    position: relative;
    overflow: hidden;
}

.about__branch__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}

#viewPhotos {
    height: 20rem;
    width: 40%;
    background-color: var(--primary-color);
    color: var(--font-w-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    gap: 0.5rem;
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

#viewPhotos .mdui-icon {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#viewPhotos:hover {
    font-size: 2rem;
}

#viewPhotos:hover .mdui-icon {
    animation: rotate 1s linear infinite;
    font-size: 2rem;
}

.about__branch__content {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 992px) {
    .about__branch {
        flex-direction: row;
    }

    .about__branch__box {
        width: 40rem;
    }

    .about__branch__gallery {
        flex-direction: column;
    }

    .about__branch__img {
        height: 25rem;
        width: 100%;
    }

    .about__branch__img::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        top: 100%;
        left: 0;
        transform-origin: top left;
        background-color: var(--primary-color);
        transform: rotate(-5deg);
        -webkit-transform: rotate(-5deg);
        -moz-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        -o-transform: rotate(-5deg);
    }

    #viewPhotos {
        height: 11rem;
        width: 100%;
    }

    .about__branch__content {
        width: calc(100% - 42rem);
    }
}

.about__branch__item {
    position: relative;
    width: 100%;
    height: 20rem;
}

.about__branch__item:nth-of-type(1) {
    margin-bottom: 2rem;
}

.about__branch__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__branch__text {
    color: var(--font-w-color);
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    padding: 2rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-s-liner);
}

.about__branch__text span:first-child {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about__branch__icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about__branch__icon .mdui-icon {
    color: var(--primary-color);
}

.about__branch__content .default__btn {
    margin-top: 2rem;
}

#myPhotos {
    max-width: 100%;
    width: 100%;
    height: 100% !important;
    max-height: 100%;
    background-color: transparent;
    box-shadow: none;
    user-select: none;
}

#myPhotos .mdui-dialog-content {
    padding: 0;
}

#myPhotos .swiper {
    height: 100%;
}

#myPhotos .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

#myPhotos .swiper-slide img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    cursor: grab;
}

.aboutNext.hidden,
.aboutPrev.hidden {
    display: none;
}

.mdui-overlay {
    backdrop-filter: blur(5px);
    background-color: var(--bg-color);
}

#closePhotos {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2.5rem;
    z-index: 9999;
    color: var(--font-w-color);
    cursor: pointer;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

#closePhotos:hover {
    color: var(--primary-color);
}

.development {
    counter-reset: development--items;
}

.development__item {
    position: relative;
    counter-increment: development--items;
}

.development__item:nth-child(2n+1) {
    padding-right: calc(var(--counter-size) / 2);
}

.development__item:nth-child(2n) {
    padding-left: calc(var(--counter-size) / 2);
}

.development__item:not(:last-child) {
    padding-bottom: calc(var(--items-y) / 2);
    margin-bottom: calc(var(--items-y) / 2);
}

.development__item::before,
.development__item::after {
    content: '';
    position: absolute;
    width: calc(50% - var(--counter-size) / 2 + var(--line-width) / 2);
}

.development__item::before {
    top: calc(var(--counter-size) + var(--line-width));
    height: calc(100% - var(--counter-size) - var(--line-width));
    border-bottom: var(--line-width) dashed var(--bg-p-color-5);
}

.development__item:nth-child(2n)::before {
    border-right: var(--line-width) dashed var(--bg-p-color-5);
    right: calc(var(--counter-size) / 2 - var(--line-width) / 2);
    border-bottom-right-radius: var(--line-radius);
}

.development__item:nth-child(2n+1)::before {
    left: calc(var(--counter-size) / 2 - var(--line-width) / 2);
    border-left: var(--line-width) dashed var(--bg-p-color-5);
    border-bottom-left-radius: var(--line-radius);
}

.development__item::after {
    top: calc(100% - var(--line-width));
    height: calc(var(--items-y) / 2);
    border-top: var(--line-width) dashed var(--bg-p-color-5);
}

.development__item:nth-child(2n)::after {
    right: 50%;
    border-top-left-radius: var(--line-radius);
    border-left: var(--line-width) dashed var(--bg-p-color-5);
}

.development__item:nth-child(2n+1)::after {
    left: 50%;
    border-right: var(--line-width) dashed var(--bg-p-color-5);
    border-top-right-radius: var(--line-radius);
}

.development__item:last-child::before,
.development__item:last-child::after {
    display: none
}

.development__inner {
    display: flex;
    gap: var(--items-x);
}

.development__item:nth-child(2n) .development__inner {
    flex-direction: row-reverse;
}

.development__counter {
    width: var(--counter-size);
    height: var(--counter-size);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--line-width) solid var(--bg-p-color-5);
    color: var(--primary-color);
    font-size: var(--counter-font-size);
}

.development__counter::before {
    content: counter(development--items);
}

.development__grow {
    flex-grow: 1;
}

.development__content {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
}

.development__img {
    flex: 0 0 auto;
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.development__text {
    flex: 0 0 auto;
    width: 100%;
    color: var(--text-color);
}

@media (min-width: 992px) {
    .development__content {
        gap: 4rem;
        flex-direction: row;
    }

    .development__item:nth-child(2n) .development__content {
        flex-direction: row-reverse;
    }

    .development__img {
        width: calc(50% - 4rem);
        height: 25rem;
    }

    .development__text {
        width: 50%;
    }
}

.development__text .mdui-panel-item {
    box-shadow: none;
    border: none;
    background-color: var(--bg-s-color);
    color: var(--text-color);
}

.development__text .mdui-panel-item-title {
    color: var(--secondary-color);
    font-size: 1.125rem;
    width: 90%;
}

.page__bg {
    background-color: var(--bg-page);
}

.mission {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--bg-w-color);
}

.mission:last-child {
    flex-direction: row-reverse;
}

.mission__content {
    flex: 0 0 auto;
    width: 100%;
    padding: 2rem;
}

.mission__title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1em;
}

.mission__text {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.5rem;
}

.mission__text:last-of-type {
    margin-bottom: 0;
}

.mission__img {
    position: relative;
    height: 20rem;
    flex: 0 0 auto;
    width: 100%;
}

.mission__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

@media (min-width: 768px) {
    .mission {
        margin-top: 2rem;
    }

    .mission__content {
        width: 60%;
    }

    .mission__img {
        width: 40%;
        height: 25rem;
    }

    .mission__img::after {
        content: '';
        position: absolute;
        top: 0;
        width: 50%;
        height: 100%;
    }

    .mission:first-child .mission__img::after {
        background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        left: 0;
    }

    .mission:last-child .mission__img::after {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
        right: 0;
    }
}

.honor__text {
    color: var(--text-color);
    max-width: 60rem;
    margin: 1rem auto 2rem auto;
    text-align: center;
    line-height: 1.5em;
}

.honor__img {
    height: 20rem;
    width: auto;
    object-fit: contain;
}

#honorSwiper {
    padding-bottom: 3rem;
    user-select: none;
}

#honorSwiper .swiper-slide {
    width: auto;
}

#honorSwiper .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}

#honorSwiper .swiper-pagination-bullet {
    width: .75rem;
    height: .75rem;
    margin: 0;
    background-color: var(--bg-p-color-5);
}

#honorSwiper .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    width: 1rem;
    height: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .honor__img {
        height: 25rem;
    }

    #honorSwiper .swiper-pagination-bullet {
        width: 1rem;
        height: 1rem;
    }

    #honorSwiper .swiper-pagination-bullet-active {
        width: 1.25rem;
        height: 1.25rem;
    }

    #honorSwiper .swiper-pagination-bullet-active::before,
    #honorSwiper .swiper-pagination-bullet-active::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

    #honorSwiper .swiper-pagination-bullet-active::before {
        width: 1rem;
        height: 1rem;
        left: .125rem;
        top: .125rem;
        background-color: var(--bg-w-color);
    }

    #honorSwiper .swiper-pagination-bullet-active::after {
        width: .75rem;
        height: .75rem;
        left: .25rem;
        top: .25rem;
        background-color: var(--primary-color);
    }
}

@media (min-width: 992px) {
    .honor__img {
        height: 30rem;
    }
}

.application {
    display: flex;
    flex-direction: column;
}

.application__menu {
    flex: 0 0 auto;
    width: 12.5rem;
    flex-direction: column;
}

.application__menu .page__title {
    position: sticky;
    top: 10rem;
}

.application__menu__list {
    border-left: 1px solid var(--font-g-color);
    position: sticky;
    top: 15rem;
    display: none;
}

.application__meun__item {
    display: block;
    padding: 0.25rem 1rem;
    color: var(--tip-color);
    margin-left: -1px;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    cursor: pointer;
}

.application__meun__item:hover {
    color: var(--title-color);
}

.application__meun__item.active {
    color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

.application__content {
    flex-grow: 1;
}

.application__content__item {
    margin-bottom: 2rem;
}

.application__content__item:last-child {
    margin-bottom: 0;
}

.application__content__img {
    width: 100%;
    max-width: 100%;
}

.application__content__title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

@media (min-width: 768px) {
    .application {
        flex-direction: row;
        justify-content: space-between;
    }

    .application__menu__list {
        display: block;
    }

    .application__content {
        max-width: 50rem;
    }

    .application__content__item {
        margin-bottom: 4rem;
    }

    .application__content__title {
        margin: 2rem 0 1rem 0;
    }
}

.application__content__icon {
    width: 2.5rem;
    height: 2.5rem;
}

.application__content__text {
    color: var(--text-color);
    line-height: 1.5em;
}

.news {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
}

.news__list {
    flex: 0 0 auto;
    width: 100%;
}

.news__list__item {
    background-color: var(--bg-w-color);
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
}

.news__list__item:not(:last-child) {
    margin-bottom: 2rem;
}

.news__list__content {
    flex: 0 0 auto;
    width: 100%;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news__content__title {
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    color: var(--title-color);
    font-size: 1.25rem;
    font-weight: bold;
    display: block;
}

.news__content__title:hover {
    color: var(--primary-color);
}

.news__content__date {
    color: var(--tip-color);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 1rem 0 0.5rem 0;
    font-size: .875rem;
}

.news__content__date .mdui-icon {
    font-size: 1.3rem;
}

.news__content__bar {
    width: 3rem;
    height: 5px;
    border-radius: 2.5px;
    -webkit-border-radius: 2.5px;
    -moz-border-radius: 2.5px;
    -ms-border-radius: 2.5px;
    -o-border-radius: 2.5px;
    background-color: var(--primary-color);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.news__content__text {
    color: var(--text-color);
    line-height: 1.5rem;
    margin: 0.5rem 0 1.5rem 0;
    overflow: hidden;
    height: 4.5rem;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news__list__img {
    flex: 0 0 auto;
    width: 100%;
    height: 15rem;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.news__list__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__list__item:hover .news__list__img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.news__list__item:hover .news__content__bar {
    width: 5rem;
}

.news__menu {
    flex: 0 0 auto;
    width: 100%;
}

.news__menu__box {
    margin-top: 1rem;
}

.news__menu__box a {
    display: flex;
    justify-content: space-between;
    padding: 2rem 2rem 2rem 8rem;
    position: relative;
    overflow: hidden;
    font-size: 1.25rem;
}

.lang_en .news__menu__box a {
    padding: 2rem 2rem 2rem 5rem;
}

.news__menu__box a img {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 7rem;
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -o-transform: rotate(-30deg);
    opacity: 0.2;
}

.news__menu__box a:first-child {
    margin-bottom: 1rem
}

.news__menu__box a:first-child {
    background-color: var(--bg-s-color);
    color: var(--secondary-color);
}

.news__menu__box a:last-child {
    background-color: var(--bg-p-color);
    color: var(--primary-color);
}

.news__menu__box a .mdui-icon {
    margin-right: 1rem;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.news__menu__box a:hover .mdui-icon {
    margin-right: 0;
}

.news__menu__contact {
    margin-top: 2rem;
    position: relative;
    display: none;
}

.news__contact__img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    vertical-align: middle;
}

.news__menu__mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--font-w-color);
    backdrop-filter: blur(2px);
}

.news__contact__button {
    background-color: var(--bg-w-color);
    text-align: center;
    padding: 2rem;
}

.news__contact__text {
    color: var(--title-color);
    font-size: 1.25rem;
    max-width: 13rem;
    margin: 0 auto 1.5rem auto;
    line-height: 1.5em;
}

.news__detail {
    background-color: var(--bg-w-color);
    padding: 1rem;
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .news {
        flex-direction: row;
    }

    .news__list {
        width: calc(100% - 22rem);
    }

    .news__list__content {
        padding: 2rem;
    }

    .news__list__img {
        height: 18rem;
    }

    .news__menu {
        width: 20rem;
    }

    .news__menu__contact {
        display: block;
    }

    .news__detail {
        padding: 2rem;
        width: calc(100% - 22rem);
    }
}

@media (min-width: 1200px) {
    .news__list__item {
        flex-direction: row;
    }

    .news__list__item:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .news__list__content {
        width: calc(100% - 20rem);
        padding: 3rem;
    }

    .news__list__content::before {
        content: '';
        position: absolute;
        top: -20%;
        height: 130%;
        width: 3rem;
        background-color: var(--bg-w-color);
    }

    .news__list__item:nth-child(2n+1) .news__list__content::before {
        right: -1rem;
        transform: rotate(-4deg);
        -webkit-transform: rotate(-4deg);
        -moz-transform: rotate(-4deg);
        -ms-transform: rotate(-4deg);
        -o-transform: rotate(-4deg);
        z-index: 9;
    }
    
    .news__list__item:nth-child(2n) .news__list__content::before {
        left: -1rem;
        transform: rotate(4deg);
        -webkit-transform: rotate(4deg);
        -moz-transform: rotate(4deg);
        -ms-transform: rotate(4deg);
        -o-transform: rotate(4deg);
        z-index: 9;
    }

    .news__list__img {
        width: 20rem;
        height: 22rem;
    }
}

.news__detail__title {
    text-align: center;
    color: var(--title-color);
    line-height: 1.5em;
}

.news__detail__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: .875rem;
    color: var(--tip-color);
    margin: 1rem 0 1.5rem 0;
}

.news__detail__content p {
    color: var(--text-color);
    line-height: 1.5em;
    margin-bottom: 1rem;
}

.news__detail__content img {
    width: 100%;
    max-width: 100%;
    margin: auto;
}

.contact {
    margin-top: 2rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__info__box {
    padding: 1rem;
    width: 100%;
}

.contact__info__box:first-child {
    background-color: var(--bg-s-color);
    color: var(--secondary-color);
}

.contact__info__box:last-child {
    background-color: var(--bg-p-color);
    color: var(--primary-color);
}

.contact__info__title {
    margin-bottom: 1.5rem;
}

.contact__info__content {
    margin-top: .875rem;
}

.contact__message {
    background-color: var(--bg-w-color);
    padding: 2rem 1rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .contact__info {
        flex-direction: row;
        gap: 2rem;
    }
    
    .contact__info__box {
        padding: 2rem;
        flex: 0 0 auto;
        width: calc(50% - 1rem);
    }

    .contact__message {
        padding: 3rem;
        gap: 2rem;
        margin-top: 2rem;
    }
    
}

.contact__message__title {
    color: var(--title-color);
}

.contact__message__form {
    max-width: 50rem;
    width: 100%;
}

.contact .mdui-textfield {
    padding-top: 0;
}

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

@media (min-width: 768px) {
    .contact__message__captcha {
        justify-content: flex-start;
    }
}

.contact__captcha__code {
    flex: 0 0 auto;
    width: calc(100% - 16rem);
    max-width: 20rem;
}

#captchaCanvas {
    width: 15rem;
    height: 4rem;
    cursor: pointer;
}

.contact .default__btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.mdui-textfield.mdui-textfield-focus .mdui-icon,
.mdui-textfield.mdui-textfield-floating-label.mdui-textfield-focus .mdui-textfield-label {
    color: var(--secondary-color) !important;
}

.mdui-textfield.mdui-textfield-focus .mdui-textfield-input {
    border-bottom-color: var(--secondary-color) !important;
    box-shadow: 0 1px 0 0 var(--secondary-color) !important;
}

.mdui-textfield.mdui-textfield-invalid-html5 .mdui-textfield-label {
    color: var(--bg-p-color-5) !important;
}

.mdui-textfield-invalid-html5 .mdui-textfield-input {
    border-bottom-color: var(--primary-color) !important;
    box-shadow: 0 1px 0 0 var(--primary-color) !important;
}

.mdui-textfield-error {
    color: var(--primary-color);
}

.product {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
}

.product__list {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.75rem;
}

.product__list__box {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 0.75rem;
}

.product__list__item {
    background-color: var(--bg-w-color);
    display: block;
    margin-bottom: 1.5rem;
}

.product__list__item:hover .product__item__img {
    transform: scale(1.1);
}

.product__item__img {
    width: 100%;
    max-width: 100%;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.product__item__name {
    text-align: center;
    position: relative;
    padding: 1rem;
    color: var(--title-color);
    font-size: 1.125rem;
}

.product__item__name::before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 4px;
    border-radius: 2px;
    background-color: var(--primary-color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.product__menu {
    flex: 0 0 auto;
    width: 100%;
}

.product__menu__list {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.product__menu__item {
    flex: 0 0 auto;
    width: calc(33.333333333% - 0.6666666667rem);
    background-color: var(--bg-w-color);
    padding: 1rem;
    color: var(--text-color);
    font-size: .875rem;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.lang_en .product__menu__item {
    width: calc(50% - 0.5rem);
}

.product__menu__item:hover,
.product__menu__item.active {
    background-color: var(--bg-p-color);
    color: var(--primary-color);
}

.product__menu__card {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-top: 1rem;
}

.product__card__item {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 1rem;
    z-index: 0;
}

.product__card__item:first-child {
    background-color: var(--bg-s-color);
    color: var(--secondary-color);
}

.product__card__item:last-child {
    background-color: var(--bg-p-color);
    color: var(--primary-color);
}

.prodcut__card__title {
    font-size: 1.25rem;
    z-index: 1;
    font-weight: bold;
}

.prodcut__card__text {
    z-index: 1;
    font-size: .875rem;
    margin-top: 1rem;
    color: var(--text-color);
    display: none;
}

.product__card__item img {
    position: absolute;
    height: 15rem;
    right: -2rem;
    bottom: -5rem;
    opacity: 0.1;
    z-index: -1;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.product__card__item:hover img {
    transform: scale(1.1);
}

@media (min-width: 1200px) {
    .product {
        flex-direction: row;
    }

    .product__list {
        width: calc(100% - 22rem);
    }

    .lang_en .product__list {
        width: calc(100% - 24rem);
    }

    .product__list__box {
        width: 33.33333333%;
        padding: 0 1rem;
    }

    .product__list__item {
        margin-bottom: 2rem;
    }

    .product__menu {
        width: 20rem;
    }

    .lang_en .product__menu {
        width: 22rem;
    }

    .product__menu__item {
        width: calc(50% - 0.5rem);
    }

    .product__menu__card {
        gap: 2rem;
        margin-top: 2rem;
    }

    .product__card__item {
        height: 12rem;
        padding: 2rem;
    }

    .lang_en .product__card__item {
        height: auto;
    }

    .prodcut__card__text {
        display: block;
    }
}

.page__title__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product__detail__box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-w-color);
    margin-top: 1rem;
    padding: 1rem;
}

.product__detail__img {
    flex: 0 0 auto;
    text-align: center;
}

.product__detail__img img {
    width: 100%;
    max-width: 30rem;
}

.product__detail__content {
    flex-grow: 1;
}

@media (min-width: 992px) {
    .product__detail__box {
        flex-direction: row;
        padding: 2rem;
    }

    .product__detail__img {
        border-right: 1px solid var(--bg-s-color);
    }

    .product__detail__content {
        padding-left: 4rem;
    }
}

.product__detail__text {
    padding: 2rem 0;
}

.product__detail__text p {
    color: var(--text-color);
    line-height: 1.5em;
    margin-bottom: 1rem;
}

.mdui-dialog-content {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: center;
}

.mdui-dialog-content .mdui-icon {
    display: block;
    font-size: 10rem;
    color: var(--primary-color);
    margin: 1rem auto 2rem auto;
}

.mdui-dialog-actions .mdui-btn {
    color: var(--primary-color);
    font-weight: bold;
}

#myform .mdui-textfield-label {
    font-size: 1rem;
    transform: scale(1) translateY(1.65rem);
    -webkit-transform: scale(1) translateY(1.65rem);
    -moz-transform: scale(1) translateY(1.65rem);
    -ms-transform: scale(1) translateY(1.65rem);
    -o-transform: scale(1) translateY(1.65rem);
}

#myform .mdui-textfield-focus .mdui-textfield-label{
    transform: scale(.75) translateY(0);
    -webkit-transform: scale(.75) translateY(0);
    -moz-transform: scale(.75) translateY(0);
    -ms-transform: scale(.75) translateY(0);
    -o-transform: scale(.75) translateY(0);
}

#myform .mdui-textfield-label,
#myform .mdui-textfield-input,
#myform .mdui-textfield-error {
    margin-left: 3.5rem!important;
    width: calc(100% - 3.5rem)!important;
}

#myform .mdui-textfield-input {
    height: 2.25rem;
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 0.5rem 0;
}

#myform .mdui-textfield-has-bottom {
    padding-bottom: 1.75rem;
}

#myform .mdui-textfield-has-bottom .mdui-icon {
    bottom: 1.75rem;
    font-size: 1.5rem;
}

#myform .mdui-textfield-error {
    bottom: 0.5rem;
    height: .75rem;
    line-height: .75rem;
    font-size: .75rem;
}

.mdui-tab a {
    text-transform: none;
}
