@charset "utf-8";
body{overflow-x: hidden;}




.sewing {
    height: 80px;
}

.header {
    color: #eaeaea;
    font-size: 15px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7777;
    transition: all ease-in-out .5s;
}


.header.on,
.header.active,
.header:hover
{
    color: #000;
    box-shadow: 0 5px 10px #ededed; 
    background: #fff;
}

.header .wrapper {
    align-items: center;
}

.header h1 {
    width: 150px;
    height: 42px;
    background: url(../images/logo.png) no-repeat left center/contain;
}

.header.on h1,
.header.active h1,
.header:hover h1 {
    background: url(../images/logo-active.png) no-repeat left center/contain;
}

.header h1 a {
    text-indent: -9999px;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.header .nav {
    display: flex;
    margin-left: 136px;
}

.header .nav li {
    line-height: 80px;
    margin: 0 2px;
}

.header .nav li.active,
.header .nav li:hover {
    color: #666;
}

.header .nav li a {
    height: 100%;
    display: inline-block;
    padding: 0 14px;
}

.header .nav li .item {
    width: 100%;
    position: fixed;
    top: 80px;
    left: 0;
    z-index: 777;
    background: #fff;
}

.header .nav li .item {
    display: none;
    border-top: 1px solid #dcdcdc;
}

.header .nav li .drop-down {
    display: flex;
    flex-wrap: wrap;
    max-width: 1820px;
    padding: 30px 0;
    margin: 0 auto;
}

.header .nav li .drop-down .li {
    color: #888;
    line-height: 30px;
    position: relative;
}

.header .nav li .drop-down .li:not(:last-child) {
    margin-right: 40px;
}

.header .nav li .drop-down .li::after {
    content: '';
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: all ease-in-out .3s;
    background: #000;
}

.header .nav li .drop-down .li:hover::after {
    width: 100%;
}

.header .nav li .drop-down .li a {
    padding: 0;
}

.header .terminal-button {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header .terminal-button .search-icon {
    width: 15px;
    height: 15px;
    cursor: pointer;
    background-image: url(../images/search.png);
}

.header.on .terminal-button .search-icon,
.header.active .terminal-button .search-icon,
.header:hover .terminal-button .search-icon {
    background-image: url(../images/search-active.png);
}

.header .terminal-button .switch {
    cursor: pointer;
    padding-right: 25px;
    margin-left: 20px;
    position: relative;
}

.header .terminal-button .switch::after {
    content: '';
    width: 14px;
    height: 9px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url(../images/switch-arrow.png);
}

.header.on .terminal-button .switch::after,
.header.active .terminal-button .switch::after,
.header:hover .terminal-button .switch::after {
    background-image: url(../images/switch-arrow-active.png);
}

.header .terminal-button .switch .select {
    width: 55px;
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
}

.header .terminal-button .switch .select li {
    color: #000;
    text-align: center;
    text-transform: uppercase;
    line-height: 45px;
    background: #fff;
}

.header .terminal-button .switch .select li:hover {
    color: #fff;
    background: #000;
}

.header .terminal-button .switch .select li a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.header .mobile-button {
    display: none;
    align-items: center;
    margin-left: auto;
}

.header .mobile-button .icon {
    width: 25px;
    height: 25px;
    background-position: right center;
}

.header .mobile-button .search-icon {
    background-image: url(../images/mb-search.png);
}

.header.on .mobile-button .search-icon,
.header.active .mobile-button .search-icon,
.header:hover .mobile-button .search-icon {
    background-image: url(../images/mb-search-active.png);
}

.header .mobile-button .menu-icon {
    background-image: url(../images/mb-menu.png);
}

.header .mobile-button .menu-icon.active {
    background-image: url(../images/close.png);
}

.header.on .mobile-button .menu-icon,
.header.active .mobile-button .menu-icon,
.header:hover .mobile-button .menu-icon {
    background-image: url(../images/mb-menu-active.png);
}

.header.on .mobile-button .menu-icon.active,
.header.active .mobile-button .menu-icon.active,
.header:hover .mobile-button .menu-icon.active {
    background-image: url(../images/close-active.png);
}

.header .mobile-button .icon:not(:last-child) {
    margin-right: 15px;
}

.header .form {
	font-size: 0;
	width: 100%;
	padding: 20px 0;
	display: none;
	position: fixed;
	left: 0;
	top: 80px;
	background: rgba(0, 0 ,0, .4);
}

.header .form form {
	max-width: 600px;
	margin: 0 auto;
	position: relative;
    background: #fff;
}

.header .form input {
	color: #333;
	font-size: 15px;
	width: 100%;
	height: 50px;
    padding-left: 25px;
	padding-right: 45px;
}

.header .form button {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 25px;
	background: url(../images/search-active.png) no-repeat right center/contain;
}




@media(max-width:1820px) {
    .header .nav li .drop-down {
        padding: 30px 15px;
    }
}

@media(max-width:1600px) {
    .sewing {
        height: 60px;
    }

    .header {
        font-size: 14px;
    }

    .header h1 {
        width: 120px;
        height: 35px;
    }

    .header .nav li {
        line-height: 60px;
    }

    .header .terminal-button .switch {
        margin-left: 15px;
    }

    .header .nav li .item {
        top: 60px;
    }

    .header .nav li .drop-down {
        padding: 15px;
    }

    .header .nav li .drop-down .li:not(:last-child) {
        margin-right: 30px;
    }

    .header .form {
        top: 60px;
        padding: 15px 0;
    }

    .header .form form {
        max-width: 400px;
    }

    .header .form input {
        font-size: 14px;
        height: 40px;
        padding-left: 15px;
    }

    .header .form button {
        width: 18px;
        height: 18px;
        right: 15px;
    }
}

@media(max-width:1300px) {
    .header {
        font-size: 13px;
    }

    .header h1 {
        width: 100px;
        height: 40px;
    }

    .header .nav {
       margin: 0 auto;
    }

    .header .nav li .drop-down .li:not(:last-child) {
        margin-right: 25px;
    }

    .header .nav li a {
        padding: 0 10px;
    }

    .header .form input {
        font-size: 13px;
    }
}

@media(max-width:991px) {
    .header {
        padding: 10px 0;
    }

    .header.on, .header.active, .header:hover {
        box-shadow: none;
    }

    .header .nav {
        display: none;
    }

    .header .terminal-button {
        display: none;
    }

    .header .mobile-button {
        display: flex;
    }

    .header .form {
        padding: 12px 0;
    }

    .header .form form {
        max-width: 320px;
    }

    .header .form input {
        height: 35px;
    }
}

@media(max-width:430px) {
    .sewing {
        height: 50px;
    }

    .header h1 {
        height: 30px;
    }

    .header .mobile-button .icon {
        width: 22px;
        height: 22px;
    }

    .header .mobile-button .icon:not(:last-child) {
        margin-right: 12px;
    }

    .header .form {
        top: 50px;
    }

    .header .form form {
        max-width:250px;
    }

    .header .form input {
        font-size: 12px;
        height: 35px;
        padding-left: 12px;
        padding-right: 30px;
    }

    .header .form button {
        width: 15px;
        height: 15px;
        right: 12px;
    }
}




.mobile-navbar {
    color: #fff;
    font-size: 18px;
    width: 100%;
    height: 100vh;
    padding: 100px 30px;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 6666;
    transition: all ease-in-out .4s;
    background: #000;
}

.mobile-navbar.active {
    left: 0;
}

.mobile-navbar ul {
    margin-bottom: 30px;
}

.mobile-navbar ul li {
   position: relative;
}

.mobile-navbar ul li h4 {
     line-height: 46px;
}

.mobile-navbar ul li a {
    height: 100%;
    display: inline-block;
}

.mobile-navbar ul li .arrow-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 15px;
    right: 0;
    z-index: -1;
    background-position: right center;
    background-image: url(../images/mb-arrow.png);
}

.mobile-navbar ul li .drop-down {
    display: none;
    padding: 12px 0;
    margin-top: 5px;
    border-top: 1px solid #fff;
}

.mobile-navbar ul li .drop-down .li {
    font-size: 15px;
    line-height: 30px;
}

.mobile-switch {
    display: flex;
    align-items: center;
}

.mobile-switch a {
    line-height: 1;
    position: relative;
}

.mobile-switch a:not(:last-child) {
    margin-right: 33px;
}

.mobile-switch a:not(:last-child)::after {
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    right: -17px;
    background: #fff;
}




.contact-us {
    color: #222;
    font-family: light;
    text-align: center;
    padding: 30px 0 38px;
    background: #ececec;
}

.contact-us .call {
    font-size: 46px;
    font-family: Exlight;
    display: block;
    margin-bottom: 5px;
}

.contact-us p {
    font-size: 18px;
    margin-bottom: 23px;
}

.contact-us .toUs {
    color: #eaeaea;
    font-size: 15px;
    text-align: center;
    line-height: 35px;
    width: 125px;
    display: block;
    margin: 0 auto;
    border-radius: 50px;
    transition: all ease-in-out .3s;
    background: #000;
}

.contact-us .toUs:hover {
    background: #333;
}




@media(max-width:1600px) {
    .contact-us .call {
        font-size: 32px;
    }

    .contact-us p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .contact-us .toUs {
        font-size: 14px;
        width: 115px;
    }
}

@media(max-width:1300px) {
    .contact-us {
        padding: 25px 0 35px;
    }

    .contact-us .call {
        font-size: 26px;
    }

    .contact-us p {
        font-size: 15px;
    }

    .contact-us .toUs {
        font-size: 13px;
        line-height: 32px;
    }
}

@media(max-width:991px) {
    .contact-us .call {
        font-size: 18px;
    }

    .contact-us p {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .contact-us .toUs {
        /* font-size: 12px; */
        line-height: 32px;
        width: 110px;
    }
}

@media(max-width:430px) {
    .contact-us {
        padding: 22px 0 30px;
    }

    /* .contact-us .call {
        font-size: 16px;
    } */

    .contact-us p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    /* .contact-us .toUs {
        line-height: 25px;
        width: 90px;
    } */
}




.footer {
    color: #888;
    font-size: 15px;
    padding-top: 55px;
    background: #000;
}

.footer-panel {
    display: flex;
    max-width: 1820px;
    margin: 0 auto 140px;
}

.footer-logo {
    width: 205px;
    height: 58px;
    background: url(../images/footer-logo.png) no-repeat left center/contain;
}

.footer-logo a {
    width: 100%;
    height: 100%;
    display: inline-block;
}

.footer-nav {
    display: flex;
    /* margin-left: 275px; */
    margin: 0 auto;
}

.footer-nav dl:not(:last-child) {
    margin-right: 125px;
}

.footer-nav dl dt {
    color: #fff;
    font-size: 18px;
    font-family: Corbe;
    margin-bottom: 15px;
}

.footer-nav dl dt a:hover {
    text-decoration: underline;
}

.footer-nav dl dd {
    line-height: 36px;
}

.footer-nav dl dd a:hover {
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    line-height: 30px;
    padding: 25px 0;
    border-top: 1px solid #313131;
}




@media(max-width:1600px) {
    .footer {
        font-size: 14px;
        padding-top: 45px;
    }

    .footer-panel {
        margin: 0 auto 80px;
    }

    .footer-logo {
        width: 160px;
        height: 45px;
    }

    .footer-nav dl:not(:last-child) {
        margin-right: 100px;
    }

    .footer-nav dl dt {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-nav dl dd {
        line-height: 30px;
    }

    .footer-copy {
        padding: 15px 0;
    }
}

@media(max-width:1300px) {
    .footer {
        font-size: 13px;
        padding-top: 40px;
    }

    .footer-panel {
        margin: 0 auto 60px;
    }

    .footer-logo {
        width: 135px;
        height: 38px;
    }

    .footer-nav dl:not(:last-child) {
        margin-right: 60px;
    }

    .footer-nav dl dt {
        font-size: 15px;
    }

    .footer-nav dl dd {
        line-height: 25px;
    }

    .footer-copy {
        padding: 10px 0;
    }
}

@media(max-width:991px) {
    .footer {
        font-size: 12px;
        padding: 15px 0;
    }

    .footer-panel {
        display: none;
    }

    .footer-copy {
        line-height: 24px;
        padding: 0;
        border-top: none;
    }
}




.news {
    padding-top: 40px;
}

.news .list-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px 14px;
}

.news .list .img {
    height: 600px;
    margin-bottom: 27px;
}

.news .list p {
    color: #000;
    font-size: 26px;
    font-family: Exlight;
    font-weight: lighter;
    line-height: 32px;
}

.news .page {
    padding: 80px 0 60px;
}




@media(max-width:1600px) {
    .news .list-container {
        gap: 35px 10px;
    }

    .news .list .img {
        height: 500px;
        margin-bottom: 20px;
    }

    .news .list p {
        font-size: 18px;
        line-height: 26px;
    }

    .news .page {
        padding: 60px 0;
    }
}

@media(max-width:1300px) {
    .news .list-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 8px;
    }

    .news .list .img {
        height: 400px;
        margin-bottom: 15px;
    }

    .news .list p {
        font-size: 16px;
        line-height: 24px;
    }

    .news .page {
        padding: 50px 0 60px;
    }
}

@media(max-width:991px) {
    .news .list-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 5px;
    }

    .news .list .img {
        margin-bottom: 12px;
    }

    .news .list p {
        font-size: 15px;
        line-height: 24px;
    }

    .news .page {
        padding: 50px 0 60px;
    }
}

@media(max-width:430px) {
    .news .list-container {
        grid-template-columns: 1fr;
        gap: 25px 5px;
    }

    .news .list .img {
        height: 500px;
        margin-bottom: 10px;
    }

    .news .list p {
        font-size: 16px;
        line-height: 26px;
    }

    .news .page {
        padding: 40px 0 60px;
    }
}




.newsv {
    color: #333;
    padding: 120px 0 140px;
}

.newsv .title {
    margin-bottom: 40px;
    text-align: center;
}

.newsv .title h2 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 20px;
}

.newsv .title em {
    font-size: 16px;
    display: block;
}

.newsv .content {
    font-size: 15px;
    line-height: 32px;
    padding-bottom: 70px;
    margin-bottom: 45px;
    border-bottom: 1px solid #d2d2d2;
}

.newsv .agrop {
    text-align: center;
}

.newsv .agrop a {
    font-size: 16px;
    display: inline-block;
    position: relative;
}

.newsv .agrop a:not(:last-child) {
    margin-right: 101px;
}

.newsv .agrop a::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 16px;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    background-color: #bfbfbf;
}

.newsv .agrop a:last-child::after {
    display: none;
}

.newsv .agrop a:hover {
    text-decoration: underline;
}




@media (max-width:1500px) {
    .newsv{
        padding-top: 100px;
    }
}

@media (max-width:1400px) {
    .newsv {
        padding: 80px 0;
    }

    .newsv .title {
        margin-bottom: 65px;
    }

    .newsv .title h2 {
        margin-bottom: 10px;
    }

    .newsv .content {
        padding-bottom: 80px;
    }
}

@media (max-width:1200px) {
    .newsv {
        padding: 60px 0;
    }
    
    .newsv .title {
        margin-bottom: 45px;
    }

    .newsv .title h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .newsv .title em {
        font-size: 16px;
    }

    .newsv .content {
        padding-bottom: 60px;
    }

    .newsv .content {
        line-height: 30px;
    }

    .newsv .agrop a:not(:last-child) {
        margin-right: 81px;
    }

    .newsv .agrop a::after {
        right: -40px;
    }
}

@media (max-width:991px) {
    .newsv {
        padding: 50px 0;
    }

    .newsv .title {
        margin-bottom: 35px;
    }

    .newsv .title h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .newsv .content {
        font-size: 14px;
        line-height: 25px;
        padding-bottom: 40px;
        margin-bottom: 35px;
    }

    .newsv .agrop a {
        font-size: 16px;
    }

    .newsv .agrop a:not(:last-child) {
        margin-right: 61px;
    }

    .newsv .agrop a::after {
        right: -30px;
    }
}

@media (max-width:768px) {
    .newsv {
        padding: 40px 0 50px 0;
    }

    .newsv .title em {
        font-size: 14px;
    }

    .newsv .title {
        margin-bottom: 30px;
    }

    .newsv .title h2 {
        font-size: 17px;
        line-height: 26px;
    }

    .newsv .content {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .newsv .agrop a {
        font-size: 14px;
    }

    .newsv .agrop a:not(:last-child) {
        margin-right: 21px;
    }

    .newsv .agrop a::after {
        right: -10px;
    }
}

@media (max-width:430px) {
    .newsv {
        padding: 45px 0 60px;
    }

    .newsv .title {
        margin-bottom: 25px;
    }

    .newsv .title h2 {
        font-size: 16px;
      /*  font-weight: bold; */
        line-height: 25px;
        margin-bottom: 10px;
    }

    .newsv .content {
        font-size: 13px;
        line-height: 26px;
    }

    .newsv .agrop a {
        font-size: 13px;
    }
}

@media (max-width:400px) {
    .newsv .agrop {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .newsv .agrop a {
        color: #fff !important;
        font-size: 11px;
        line-height: 35px;
        height: 35px;
        margin-right: 0!important;
        border-radius: 5px;
        background-color: #000;
    }

    .newsv .agrop a:hover {
        text-decoration: none;
        background-color: #333;
    }

    .newsv .agrop a::after {
        display: none;
    }
}




.download {
    padding-top: 48px;
}

.download .list {
    display: flex;
    flex-wrap: wrap;
}

.download .list:not(:last-child) {
    margin-bottom: 25px;
}

.download .list .img {
    width: 48.3518%;
    height: 580px;
    padding: 90px;
    background: #f4f4f4;
}

.download .list .content {
    color: #000;
    width: 48.3518%;
    padding-top: 10px;
    margin-left: auto;
}

.download .list .content h4 {
    font-size: 28px;
    font-family: Exlight;
    
    margin-bottom: 17px;
}

.download .list .content .introd {
    font-size: 18px;
    font-family: Exlight;
    line-height: 32px;
    margin-bottom: 21px;
}

.download .list .content .load-button {
    color: #fff;
    font-size: 15px;
    font-family: light;
    line-height: 35px;
    padding: 0 30px;
    display: inline-block;
    border-radius: 50px;
    background: #000;
}

.download .list .content .load-button:hover {
    background: #333;
}

.download .page {
    padding: 85px 0 65px;
}




@media(max-width:1600px) {
    .download .list .img {
        height: 500px;
        padding: 45px;
    }

    .download .list .content h4 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .download .list .content .introd {
        font-size: 15px;
        line-height: 30px;
    }

    .download .page {
        padding: 60px 0;
    }
}

@media(max-width:1300px) {
    .download .list:not(:last-child) {
        margin-bottom: 15px;
    }

    .download .list .img {
        height: 420px;
    }

    .download .list .content h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .download .list .content .introd {
        font-size: 14px;
        line-height: 26px;
    }

    .download .list .content .load-button {
        font-size: 14px;
        line-height: 30px;
        padding: 0 25px;
    }
}

@media(max-width:991px) {
    .download .list:not(:last-child) {
        margin-bottom: 45px;
    }

    .download .list .img {
        width: 100%;
        height: 350px;
        padding: 30px;
    }

    .download .list .content {
        width: 100%;
        padding-top: 25px;
    } 

    .download .list .content h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .download .list .content .introd {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    .download .list .content .load-button {
        font-size: 13px;
    }

    .download .page {
        padding: 50px 0;
    }
}

@media(max-width:430px) {
    .download .list:not(:last-child) {
        margin-bottom: 40px;
    }

    .download .list .img {
        width: 100%;
        height: 250px;
        padding: 20px;
    }

    .download .list .content {
        padding-top: 20px;
    } 

    .download .list .content .introd {
        line-height: 22px;
    }

    .download .list .content .load-button {
        line-height: 28px;
        padding: 0 20px;
    }

    .download .page {
        padding: 40px 0 50px;
    }
}




.case {
    padding-top: 40px;
}

.case .list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 37px 22px;
}

.case .list .img {
    height: 390px;
    margin-bottom: 19px;
}

.case .list p {
    color: #000;
    font-size: 16px;
    font-family: Exlight;
    line-height: 30px;
}

.case .page {
    padding: 80px 0 75px;
}




@media(max-width:1600px) {
    .case .list-container {
        gap: 35px 15px;
    }
    
    .case .list .img {
        height: 350px;
        margin-bottom: 15px;
    }
    
    .case .list p {
        font-size: 15px;
        line-height: 28px;
    }
    
    .case .page {
        padding: 65px 0 75px;
    }
}

@media(max-width:1300px) {
    .case .list-container {
        gap: 30px 10px;
    }
    
    .case .list .img {
        height: 320px;
        margin-bottom: 12px;
    }
    
    .case .list p {
        font-size: 14px;
        line-height: 24px;
    }
    
    .case .page {
        padding: 50px 0 65px;
    }
}

@media(max-width:991px) {
    .case .list-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px 8px;
    }
    
    .case .list .img {
        height: 300px;
    }
}

@media(max-width:430px) {
    .case .list-container {
        grid-template-columns: 1fr;
        gap: 26px 0;
    }
    
    .case .list .img {
        height: 250px;
    }

    .case .list p {
        font-size: 16px;
        line-height: 20px;
    }

    .case .page {
        padding: 40px 0 50px;
    }
}




.contact {
    color: #000;
}

.contact .content-panel {
    width: 43.9561%;
}

.contact .theme-title {
    margin-bottom: 68px;
}

.contact .text {
    font-size: 18px;
    font-family: Exlight;
    line-height: 36px;
    margin-bottom: 20px;
}

.contact .toview {
    font-size: 16px;
    font-family: Exlight;
    padding-left: 25px;
    margin-bottom: 66px;
    display: inline-block;
    position: relative;
}

.contact .toview:hover {
    color: #333;
}

.contact .toview::after {
    content: '';
    width: 16px;
    height: 13px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(../images/contact-arrow.png);
}

.contact .form .group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 30px;
}

.contact .form input, .contact .form textarea {
    color: #666;
    font-size: 16px;
    font-family: Exlight;
    padding-left: 25px;
    padding-right: 25px;
    border: 1px solid #313131;
}

.contact .form input {
    height: 40px;
    border-radius: 50px;
}

.contact .form textarea {
    height: 160px;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 38px;
    border-radius: 25px;
}

.contact .form button {
    color: #eaeaea;
    font-size: 15px;
    font-family: light;
    text-align: center;
    width: 130px;
    height: 35px;
    border-radius: 50px;
    background: #000;
}

.contact .form button:hover {
    background: #333;
}

.contact .img {
    width: 52.75%;
    height: 850px;
    margin-top: 72px;
    margin-left: auto;
}




@media(max-width:1600px) {
    .contact .theme-title {
        margin-bottom: 50px;
    }

    .contact .text {
        font-size: 16px;
        line-height: 32px;
    }

    .contact .form .group {
        margin-bottom: 20px;
    }

    .contact .form input, .contact .form textarea {
        font-size: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .contact .form textarea {
        padding-top: 10px;
        padding-bottom: 10px;
        margin-bottom: 30px;
        border-radius: 20px;
    }

    .contact .img {
        height: 800px;
        margin-top: 60px;
    }
}

@media(max-width:1300px) {
    .contact .theme-title {
        margin-bottom: 40px;
    }

    .contact .text {
        font-size: 14px;
        line-height: 30px;
    }

    .contact .toview {
        font-size: 15px;
        padding-left: 20px;
        margin-bottom: 60px;
    }
}

@media(max-width:991px) {
    .contact .content-panel {
        width: 100%;
    }

    .contact .theme-title {
        margin-bottom: 35px;
    } 

    .contact .form .group {
        gap: 15px;
    }

    .contact .form input, .contact .form textarea {
        font-size: 14px;
    }

    .contact .img {
        width: 100%;
        height: 650px;
    }
}

@media(max-width:430px) {
    .contact .theme-title {
        margin-bottom: 30px;
    } 

    .contact .text {
        font-size: 13px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .contact .toview {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .contact .toview::after {
        height: 11px;
    }

    .contact .form .group {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact .form input, .contact .form textarea {
        font-size: 13px;
    }

    .contact .form textarea {
        border-radius: 15px;
        margin-bottom: 25px;
    }

    .contact .form button {
        font-size: 14px;
        width: 120px;
    }

    .contact .img {
        height: 500px;
    }
}




.about {
    padding-bottom: 30px;
}

.about .title {
    margin-bottom: 15px;
}

.about .article {
    color: #000;
    font-size: 18px;
    line-height: 30px;
    font-family: Exlight;
    margin-bottom: 32px;
}

.about-slide {
    height: 880px;
}

.about-slide .swiper-pagination {
    width: auto;
    left: auto;
    right: 44px;
    bottom: 38px;
}

.about-slide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 7px!important;
    background: rgba(255, 255, 255, .5);
}

.about-slide .swiper-pagination-bullet-active {
    background: #fff;
}




@media(max-width:1600px) {
    .about .article {
        font-size: 16px;
    }

    .about-slide {
        height: 800px;
    }

    .about-slide .swiper-pagination {
        right: 25px;
        bottom: 30px;
    }

    .about-slide .swiper-pagination-bullet {
        margin: 0 5px!important;
    }
}

@media(max-width:1300px) {
    .about .article {
        font-size: 14px;
        line-height: 28px;
    }

    .about-slide {
        height: 700px;
    }
}

@media(max-width:430px) {
    .about .article {
        font-size: 13px;
        line-height: 26px;
    }

    .about-slide {
        height: 300px;
    }

    .about-slide .swiper-pagination {
        right: 15px;
        bottom: 25px;
    }

    .about-slide .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}




.coop {
    padding: 30px 0;
}

.coop .theme-title {
    margin-bottom: 34px;
}

.coop .hd {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.coop .hd li {
    color: #000;
    font-size: 18px;
    font-family: Exlight;
    line-height: 30px;
    cursor: pointer;
    height: 30px;
    margin-bottom: 28px;
    position: relative;
}

.coop .hd li:not(:last-child) {
    margin-right: 28px;
}

.coop .hd li::after {
    content: '';
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    transition: all ease-in-out .5s;
    background: #040404;
}

.coop .hd li.on::after {
    width: 100%;
}

.coop-slide .swiper-wrapper {
    margin-bottom: 32px;
}

.coop-slide .img {
    height: 390px;
}




@media(max-width:1600px) {
    .coop .hd li {
        font-size: 16px;
    }
}

@media(max-width:1300px) {
    .coop .hd li {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .coop .hd li:not(:last-child) {
        margin-right: 25px;
    }

    .coop-slide .swiper-wrapper {
        margin-bottom: 20px;
    }
}

@media(max-width:991px) {
    .coop .hd {
        margin-bottom: 15px;
    }

    .coop .hd li {
        margin-bottom: 10px;
    }

     .coop .hd li:not(:last-child) {
        margin-right: 20px;
    }

    .coop-slide .img {
        height: 350px;
    }
}

@media(max-width:430px) {
    .coop {
        padding: 20px 0 30px;
    }

    .coop .theme-title {
        margin-bottom: 30px;
    }

    .coop .hd li {
        margin-bottom: 5px;
    }

    .coop .hd li:not(:last-child) {
        margin-right: 15px;
    }

    .coop-slide .img {
        height: 300px;
    }
}




.honor {
    padding: 27px 0 60px;
}

.honor .theme-title {
    margin-bottom: 32px;
}

.honor-slide .swiper-wrapper {
    margin-bottom: 37px;
}

.honor-slide .img {
    height: 390px;
    padding: 30px;
    background: #ececec;
}




@media(max-width:1300px) {
    .honor {
        padding: 20px 0 55px;
    }

    .honor-slide .img {
        height: 320px;
        padding: 20px;
    }
}

@media(max-width:430px) {
    .honor {
        padding: 20px 0 50px;
    }

    .honor-slide .swiper-wrapper {
        margin-bottom: 30px;
    }

    .honor-slide .img {
        height: 250px;
    }
}




.product {
    overflow: hidden;
    position: relative;
}

.product .gallery-slide {
    position: relative;
}

.product .gallery-slide .content {
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: 99;
}

.product .gallery-slide .content h4 {
    font-size: 50px;
    font-family: Exlight;

    text-transform: uppercase;
    margin-bottom: 3px;
}

.product .gallery-slide .content p {
    font-size: 28px;
    font-family: Exlight;
    margin-bottom: 25px;
}

.product .gallery-slide .content .learn-more {
    font-size: 15px;
    font-family: light;
    line-height: 35px;
    padding: 0 25px;
    display: inline-block;
    border-radius: 50px;
    transition: all ease-in-out .3s;
    border: 1px solid #fff;
}

.product .gallery-slide .content .learn-more:hover {
    color: #fff;
    border: 1px solid #000;
    background: #000;
}

.product .thumb-container {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 80px;
}

.product .thumb-slide {
    max-width: 1820px;
    margin: 0 auto;
    background: rgba(0, 0 ,0, .5);
}

.product .thumb-slide .swiper-slide {
    cursor: pointer;
    height: auto;
    display: flex;
    padding: 25px 75px;
}

.product .thumb-slide .swiper-slide-thumb-active {
    background: #040404;
}

.product .thumb-slide .icon {
    width: 70px;
    height: 70px;
}

.product .thumb-slide p {
    color: #fff;
    font-size: 24px;
    font-family: Exlight;
    font-weight: lighter;
    text-transform: uppercase;
    line-height: 30px;
    width: calc(100% - 95px);
    padding-top: 5px;
    margin-left: auto;
}




@media(max-width:1820px) {
    .product .thumb-slide {
        width: calc(100% - 30px);
    }
}

@media(max-width:1600px) {
    .product .gallery-slide .content h4 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .product .gallery-slide .content p {
        font-size: 18px;
    }

    .product .thumb-container {
        bottom: 50px;
    }

    .product .thumb-slide .swiper-slide {
        padding: 20px 35px;
    }

    .product .thumb-slide .icon {
        width: 60px;
        height: 60px;
    }

    .product .thumb-slide p {
        font-size: 20px;
        line-height: 28px;
        width: calc(100% - 80px);
    }
}

@media(max-width:1300px) {
    .product .gallery-slide .content h4 {
        font-size: 32px;
    }

    .product .gallery-slide .content p {
        font-size: 16px;
    }

    .product .gallery-slide .content .learn-more {
        font-size: 14px;
    }

    .product .thumb-container {
        bottom: 35px;
    }

    .product .thumb-slide .swiper-slide {
        padding: 20px 30px;
    }

    .product .thumb-slide .icon {
        width: 50px;
        height: 50px;
    }

    .product .thumb-slide p {
        font-size: 16px;
        line-height: 24px;
        width: calc(100% - 65px);
    }
}

@media(max-width:991px) {
    .product .gallery-slide .content {
        top: 25%;
    }

     .product .gallery-slide .content h4 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .product .gallery-slide .content p {
        font-size: 14px;
    }

    .product .gallery-slide .content .learn-more {
        line-height: 30px;
    }

    .product .thumb-slide .swiper-slide {
        align-items: center;
        padding: 15px 20px;
    }

    .product .thumb-slide .icon {
        width: 40px;
        height: 40px;
    }

    .product .thumb-slide p {
        font-size: 14px;
        line-height: 22px;
        width: calc(100% - 55px);
        padding-top: 0;
    }
}

@media(max-width:430px) {
    .product .gallery-slide .content {
        top: 30%;
    }

    .product .gallery-slide .content h4 {
        font-size: 22px;
    }

    .product .gallery-slide .content p {
        font-size: 13px;
    }

    .product .gallery-slide .content .learn-more {
        font-size: 13px;
    }

    .product .thumb-slide .icon {
        width: 35px;
        height: 35px;
    }

    .product .thumb-slide p {
        font-size: 13px;
        line-height: 18px;
        width: calc(100% - 45px);
    }
}




.united-product .list-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 38px 20px;
}

.united-product .list .img {
    height: 390px;
    margin-bottom: 14px;
    position: relative;
    background: #f4f4f4;
}

.united-product .list .mask {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all ease .5s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.united-product .list:hover .mask {
    opacity: 1;
}

.united-product .list p {
    color: #000;
    font-size: 22px;
    font-family: Exlight;
}




@media(max-width:1600px) {
    .united-product .list-container {
        gap: 32px 15px;
    }

    .united-product .list .img {
        height: 350px;
    }

    .united-product .list p {
        font-size: 18px;
    }
}

@media(max-width:1300px) {
     .united-product .list-container {
        gap: 30px 10px;
    }

    .united-product .list .img {
        height: 320px;
    }

    .united-product .list p {
        font-size: 16px;
    }
}

@media(max-width:991px) {
     .united-product .list-container {
        grid-template-columns: 1fr 1fr;
    }

    .united-product .list p {
        font-size: 15px;
    }
}

@media(max-width:430px) {
     .united-product .list-container {
        grid-template-columns: 1fr;
        gap: 25px 0;
    }

     .united-product .list .img {
        height: 300px;
    }

    .united-product .list p {
        font-size: 14px;
    }
}




.prolist {
    padding-top: 40px;
}

.prolist .page {
    padding: 60px 0 50px;
}




@media(max-width:430px) {
    .prolist .page {
        padding: 45px 0 50px;
    }
}




.productv-title  {
    color: #000;
    font-size: 28px;
    font-family: Exlight;
    margin-bottom: 23px;
}




@media(max-width:1600px) {
    .productv-title  {
        font-size: 25px;
    }
}

@media(max-width:1300px) {
    .productv-title  {
        font-size: 22px;
    }
}

@media(max-width:991px) {
    .productv-title  {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media(max-width:430px) {
    .productv-title  {
        font-size: 18px;
        margin-bottom: 15px;
    }
}




.introduction {
    padding: 24px 0 20px;
}

.introduction .breadcrumbs {
    margin-bottom: 45px;
}

.introduction .container {
    display: flex;
    flex-wrap: wrap;
}

.introd-slide {
    width: 48.3516%;
    height: 575px;
    margin: 0;
    background: #f4f4f4;
}

.introd-slide .swiper-pagination {
    color: #222;
    font-size: 15px;
    width: auto;
    left: auto;
    right: 38px;
    bottom: 35px;
}

.introduction .content {
    color: #000;
    width: 48.3516%;
    margin-top: auto;
    margin-left: auto;
}

.introduction .content .title {
    font-family: Exlight;
    display: flex;
    align-items: first baseline;
    margin-bottom: 18px;
}

.introduction .content .title h2 {
    font-size: 45px;
}

.introduction .content .title span {
    font-size: 28px;
    margin-left: 17px;
    display: inline-block;
}

.introduction .content .introd {
    font-size: 15px;
    line-height: 34px;
    padding: 17px 0;
    margin-bottom: 14px;
    border-top: 1px solid #535353;
    border-bottom: 1px solid #535353;
}

.introduction .content .phone {
    font-size: 16px;
    display: flex;
    align-items: first baseline;
    margin-bottom: 21px;
}

.introduction .content .phone span {
    font-size: 22px;
    font-family: Exlight;
    display: inline-block;
    margin-left: 11px;
}

.introduction .calculator {
    padding: 32px 65px 40px;
    background: #e4e4e4;
}

.introduction .calculator h4 {
    font-size: 28px;
    font-family: Exlight;
    margin-bottom: 5px;
}

.introduction .calculator .group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 50px;
    margin-bottom: 38px;
}

.introduction .calculator input {
    color: #666;
    font-size: 16px;
    height: 60px;
    border-bottom: 1px solid #222;
}

.introduction .calculator .rotation {
    font-size: 16px;
    font-family: Exlight;
    display: flex;
    align-items: first baseline;
    margin-bottom: 31px;
}

.introduction .calculator .radio {
    display: flex;
    align-items: center;
    margin-left: 22px;
}

.introduction .calculator .radio .li {
    cursor: pointer;
    padding-left: 24px;
    position: relative;
}

.introduction .calculator .radio .li:not(:last-child) {
    margin-right: 32px;
}

.introduction .calculator .radio .li::before,
.introduction .calculator .radio .li::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.introduction .calculator .radio .li::before {
    width: 16px;
    height: 16px;
    left: 0;
    border: 1px solid #000;
}

.introduction .calculator .radio .li::after {
    width: 10px;
    height: 10px;
    display: none;
    left: 4px;
    background: #000;
}

.introduction .calculator .radio .li.active::after {
    display: block;
}

.introduction .calculator button {
    color: #eaeaea;
    font-size: 15px;
    font-family: light;
    text-align: center;
    width: 125px;
    height: 35px;
    border-radius: 50px;
    background: #000;
}

.introduction .calculator button:hover {
    background: #333;
}




@media(max-width:1600px) {
    .introduction .breadcrumbs {
        margin-bottom: 35px;
    }

    .introd-slide {
        height: 530px;
    }

    .introd-slide .swiper-pagination {
        right: 25px;
        bottom: 25px;
    }

    .introduction .content .title {
        margin-bottom: 15px;
    }

    .introduction .content .title h2 {
        font-size: 35px;
    }

    .introduction .content .title span {
        font-size: 22px;
        margin-left: 10px;
    }

    .introduction .content .introd {
        font-size: 14px;
        line-height: 30px;
    }

    .introduction .content .phone {
        font-size: 14px;
    }

    .introduction .content .phone span {
        font-size: 20px;
        margin-left: 6px;
    }

    .introduction .calculator {
        padding: 25px 40px 40px;
    }

    .introduction .calculator h4 {
        font-size: 25px;
    }

    .introduction .calculator input {
        font-size: 14px;
        height: 50px;
    }

    .introduction .calculator .rotation {
        font-size: 14px;
    }

    .introduction .calculator .radio {
        margin-left: 15px;
    }

    .introduction .calculator .radio .li {
        padding-left: 20px;
    }

    .introduction .calculator .radio .li:not(:last-child) {
        margin-right: 20px;
    }

    .introduction .calculator .radio .li::before {
        width: 14px;
        height: 14px;
    }

    .introduction .calculator .radio .li::after {
        width: 8px;
        height: 8px;
    }
}

@media(max-width:1300px) {
    .introd-slide {
        height: 500px;
    }

    .introduction .content .title {
        margin-bottom: 10px;
    }

    .introduction .content .title h2 {
        font-size: 30px;
    }

    .introduction .content .title span {
        font-size: 17px;
        margin-left: 5px;
    }

    .introduction .calculator {
        padding: 25px 30px 40px;
    }

    .introduction .calculator h4 {
        font-size: 22px;
    }

    .introduction .calculator .group {
        gap: 0 30px;
    }
}

@media(max-width:991px) {
    .introd-slide {
        width: 100%;
        height: 350px;
        margin-bottom: 35px;
    }

    .introd-slide .swiper-pagination {
        font-size: 14px;
        right: 20px;
        bottom: 20px;
    }

    .introduction .content {
        width: 100%;
    }

    .introduction .content .title h2 {
        font-size: 20px;
    }

    .introduction .content .title span {
        font-size: 13px;
    }

    .introduction .content .introd {
        font-size: 13px;
        line-height: 26px;
        padding: 12px 0;   
    }

    .introduction .content .phone {
        font-size: 13px;
    }

    .introduction .content .phone span {
        font-size: 16px;
    }

    .introduction .calculator {
        padding: 20px 20px 40px;
    }

    .introduction .calculator h4 {
        font-size: 17px;
    }

    .introduction .calculator .group {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
    }

    .introduction .calculator input {
        font-size: 13px;
    }

    .introduction .calculator .rotation {
        font-size: 13px;
        flex-direction: column;
    }

    .introduction .calculator .rotation p {
        margin-bottom: 7px;
    }

    .introduction .calculator .radio {
        margin-left: 0;
    }

    .introduction .calculator .radio .li {
        padding-left: 18px;
    }

    .introduction .calculator .radio .li::before {
        width: 12px;
        height: 12px;
    }

    .introduction .calculator .radio .li::after {
        width: 6px;
        height: 6px;
    }

    .introduction .calculator button {
        font-size: 14px;
        width: 110px;
        height: 32px;
    }
}

@media(max-width:430px) {
    .introd-slide {
        height: 300px;
        margin-bottom: 25px;
    }

    .introduction .content .title span {
        font-size: 12px;
    }

    .introduction .content .introd {
        font-size: 12px;
        line-height: 24px;
    }

    .introduction .calculator .group {
        margin-bottom: 25px;
    }

    .introduction .calculator input {
        height: 45px;
    }

    .introduction .calculator .rotation {
        margin-bottom: 25px;
    }

    .introduction .calculator .rotation p {
        margin-bottom: 5px;
    }

    .introduction .calculator button {
        font-size: 13px;
    }
}




.modal-mask {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    background: rgba(0, 0 ,0, .2);
}

.modal {
    color: #fff;
    width: 100%;
    max-width: 550px;
    display: none;
    padding: 45px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    transform: translate(-50%, -50%);
    background: #000;
}

.modal .argument {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 63px;
}

.modal .total h4 {
    font-size: 20px;
    margin-bottom: 11px;
}

.modal .total p {
    font-size: 36px;
}

.modal .modal-close {
    cursor: pointer;
    width: 19px;
    height: 19px;
    position: absolute;
    top: 22px;
    right: 27px;
    background-image: url(../images/modal-close.png);
}




@media(max-width:1600px) {
    .modal .argument {
        font-size: 15px;
        line-height: 28px;
        margin-bottom: 50px;
    }

    .modal .total h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .modal .total p {
        font-size: 30px;
    }
}

@media(max-width:1300px) {
    .modal {
        max-width: 500px;
        padding: 40px 30px;
    }

    .modal .argument {
        font-size: 14px;
        line-height: 26px;
    }

    .modal .total h4 {
        font-size: 16px;
    }

    .modal .total p {
        font-size: 24px;
    }
}

@media(max-width:991px) {
    .modal {
        max-width: 400px;
        padding: 35px 20px;
    }

    .modal .argument {
        font-size: 14px;
        line-height: 26px;
    }

    .modal .total h4 {
        font-size: 14px;
    }

    .modal .total p {
        font-size: 20px;
    }

    .modal .modal-close {
        top: 15px;
        right: 20px;
    }
}

@media(max-width:430px) {
    .modal {
        max-width: 320px;
        padding: 30px 15px;
    }

    .modal .argument {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 35px;
    }

    .modal .total h4 {
        font-size: 14px;
    }

    .modal .total p {
        font-size: 18px;
    }

    .modal .modal-close {
        width: 15px;
        height: 15px;
        right: 15px;
    }
}




.details {
    padding: 25px 0 18px;
}

.details .wrapper {
    flex-direction: column;
}

.details .article {
    color: #000;
    font-size: 18px;
    line-height: 30px;
    font-family: Exlight;
    margin-bottom: 37px;
}

.details .button {
    display: flex;
    margin-left: auto;
}

.details .button a {
    color: #222;
    font-size: 14px;
    text-align: center;
    line-height: 32px;
    width: 130px;
    display: block;
    border-radius: 50px;
    border: 1px solid #222;
}

.details .button a:not(:last-child) {
    margin-right: 16px;
}

.details .button a:hover {
    color: #fff;
    background: #222;
}




@media(max-width:1600px) {
    .details .article {
        font-size: 15px;
        line-height: 28px;
    }
}

@media(max-width:1300px) {
    .details .article {
        font-size: 14px;
        line-height: 26px;
    }

    .details .article {
        margin-bottom: 30px;
    }

    .details .button a {
        line-height: 30px;
        width: 120px;
    }

    .details .button a:not(:last-child) {
        margin-right: 12px;
    }
}

@media(max-width:430px) {
    .details .article {
        font-size: 13px;
        line-height: 24px;
        margin-bottom: 25px;
    }

    .details .button a {
        font-size: 12px;
        line-height: 25px;
        width: 100px;
    }

    .details .button a:not(:last-child) {
        margin-right: 10px;
    }
}




.other {
    padding: 18px 0 70px;
}




.index-product {
    max-width: 1920px;
    overflow: hidden;
    margin: 0 auto;
    padding: 81px 0 90px;
}

.index-product .theme-title {
    max-width: 1820px;
    margin: 0 auto 26px;
}

.index-product-slide {
    margin-left: 50px;
}


.index-product-slide .swiper-slide {
    color: #000;
    max-width: 860px;
}

.index-product-slide .img {
    height: 580px;
    margin-bottom: 21px;
}

.index-product-slide h4 {
    font-size: 28px;
    font-family: Corbel;
    font-weight: lighter;
    margin-bottom: 7px;
}

.index-product-slide p {
    font-size: 18px;
    font-family: Exlight;
    margin-bottom: 23px;
}

.index-product-slide em {
    font-size: 15px;
    font-family: light;
    text-align: center;
    line-height: 35px;
    width: 125px;
    display: block;
    border-radius: 50px;
    border: 1px solid #000;
}

.index-product-slide em:hover {
    color: #fff;
    background: #000;
}




@media(max-width: 1820px) {
    .index-product .theme-title {
        padding: 0 15px;
    }

    .index-product-slide {
        margin-left: 15px;
    }
}

@media(max-width: 1600px) {
   .index-product-slide .swiper-slide {
        max-width: 700px;
    }

    .index-product-slide .img {
        height: 500px;
        margin-bottom: 21px;
    }

    .index-product-slide h4 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .index-product-slide p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .index-product-slide em {
        font-size: 14px;
    }
}

@media(max-width: 1300px) {
   .index-product-slide .swiper-slide {
        max-width: 600px;
    }

    .index-product-slide .img {
        height: 450px;
        margin-bottom: 15px;
    }

    .index-product-slide h4 {
        font-size: 23px;
        margin-bottom: 5px;
    }

    .index-product-slide p {
        font-size: 15px;
    }
}

@media(max-width: 991px) {
    .index-product {
        padding: 70px 0 85px;
    }

    .index-product-slide .img {
        height: 400px;
    }

    .index-product-slide h4 {
        font-size: 20px;
    }

    .index-product-slide em {
        font-size: 13px;
        line-height: 30px;
        width: 110px;
    }
}

@media(max-width: 768px) {
    .index-product {
        padding: 50px 0 70px;
    }

    .index-product-slide .swiper-slide {
        max-width: 450px;
    }

    .index-product-slide .img {
        height: 300px;
        margin-bottom: 12px;
    }
}

@media(max-width: 430px) {
    .index-product {
        padding: 40px 0 60px;
    }

    .index-product-slide .swiper-slide {
        max-width: 350px;
    }

    .index-product-slide .img {
        height: 250px;
        margin-bottom: 12px;
    }

    .index-product-slide h4 {
        font-size: 18px;
		font-family: light;
    }

    .index-product-slide p {
        font-size: 13px;
        margin-bottom: 15px;
    }
}




.index-about {
    padding: 646px 0 57px;
    background-image: url(../images/index-about-bgimg.jpg);
}

.index-about .theme-title {
    color: #fff;
    margin-bottom: 20px;
}

.index-about p {
    max-width: 970px;
}

.index-about .learn-more {
    color: #fff;
    font-size: 15px;
    font-family: light;
    text-align: center;
    line-height: 35px;
    width: 125px;
    display: block;
    border-radius: 50px;
    border: 1px solid #fff;
}

.index-about .learn-more:hover {
    color: #fff;
    border: 1px solid #000;
    background: #000;
}




@media(max-width: 1600px) {
    .index-about {
        padding: 580px 0 55px;
    }
}

@media(max-width: 1300px) {
    .index-about {
        padding: 520px 0 50px;
    }
}

@media(max-width: 991px) {
    .index-about {
        padding: 450px 0 50px;
        background-image: url(../images/mb-index-about-bgimg.jpg);
    }

    .index-about .learn-more {
        font-size: 14px;
        line-height: 30px;
        width: 110px;
    }
}

@media(max-width: 430px) {
    .index-about {
        padding: 380px 0 50px;
    }

    .index-about .learn-more {
        font-size: 13px;
    }
}




.index-news {
    max-width: 1920px;
    padding: 81px 0 37px;
    margin: 0 auto;
}

.index-news .theme-title {
    max-width: 1820px;
    margin: 0 auto 28px;
}

.index-news-slide {
    margin-left: 50px;
}

.index-news-slide .swiper-slide {
    max-width: 445px;
}

.index-news-slide .img {
    height: 600px;
    margin-bottom: 27px;
}

.index-news-slide p {
    color: #000;
    font-size: 26px;
    font-family: Exlight;
   
    line-height: 32px;
}




@media(max-width: 1820px) {
    .index-news .theme-title {
        padding: 0 15px;
    }

    .index-news-slide {
        margin-left: 15px;
    }
}




@media(max-width:1600px) {
    .index-news-slide .img {
        height: 500px;
        margin-bottom: 20px;
    }

    .index-news-slide p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media(max-width:1300px) {
    .index-news-slide .img {
        height: 400px;
        margin-bottom: 15px;
    }

    .index-news-slide p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media(max-width:991px) {
    .index-news {
        padding: 70px 0 35px;
    }

    .index-news-slide .swiper-slide {
        max-width: 400px;
    }

    .index-news-slide .img {
        margin-bottom: 12px;
    }

   .index-news-slide p {
        font-size: 15px;
        line-height: 24px;
    }
}

@media(max-width:430px) {
    .index-news {
        padding: 55px 0 35px;
    }

     .index-news-slide .swiper-slide {
        max-width: 350px;
    }

    .index-news-slide .img {
        height: 300px;
        margin-bottom: 10px;
    }

    .index-news-slide p {
        font-size: 14px;
        line-height: 20px;
    }
}




.index-message {
    padding: 37px 0 70px;
}

.index-message .theme-title {
    margin-bottom: 20px;
}

.index-message .form .group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 33px;
    margin-bottom: 40px;
}

.index-message .form input {
    color: #666;
    font-size: 16px;
    font-family: Exlight;
    height: 65px;
    border-bottom: 1px solid #222222;
}

.index-message .form button {
    color: #fff;
    font-size: 15px;
    text-align: center;
    font-family: light;
    line-height: 35px;
    width: 125px;
    display: block;
    border-radius: 50px;
    background: #000;
}

.index-message .form button:hover {
    background: #333;
}




@media(max-width:1600px) {
    .index-message .form .group {
        gap: 20px;
        margin-bottom: 35px;
    }

    .index-message .form input {
        font-size: 15px;
        height: 55px;
    }
}

@media(max-width:991px) {
    .index-message {
        padding: 30px 0 60px;
    }

    .index-message .form .group {
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
    }

    .index-message .form input {
        font-size: 14px;
        height: 50px;
    }
}

@media(max-width:430px) {
    .index-message {
        padding: 15px 0 60px;
    }

    .index-message .form .group {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .index-message .form input {
        font-size: 13px;
    }

    .index-message .form button {
        font-size: 13px;
        line-height: 32px;
        width: 110px;
    }
}




.banner-video {
    overflow: hidden;
    position: relative;
}

.banner-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.banner-video .play-icon {
    width: 42px;
    height: 42px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, -50%);
    background-image: url(../images/play.png);
}

.banner-content {
    position: relative;
}

.banner-content .article {
    width: 100%;
    max-width: 1820px;
    margin: 0 auto;
    position: absolute;
    left: 50%;  
    bottom: 60px;
    transform: translateX(-50%);
    z-index: 1;
}

.banner-content .theme-title {
    color: #eaeaea;
}

.banner-content .article p {
    max-width: 980px;
    margin-bottom: 20px;
}

.banner-content .article a {
    color: #eaeaea;
    font-size: 15px;
    font-family: light;
    line-height: 35px;
    padding: 0 25px;
    display: inline-block;
    border-radius: 50px;
    border: 1px solid #eaeaea;
}




@media(max-width:1820px) {
    .banner-content .article {
        padding: 0 15px;
    }
}

@media(max-width:1600px) {
    .banner-content .article {
        padding: 0 15px;
    }

    .banner-content .article a {
        font-size: 14px;
    }
}

@media(max-width:991px) {
	.banner-content {
		display: none;
	}
    .banner-content .article {
        bottom: 40px;
    }

    .banner-content .article a {
        font-size: 13px;
        line-height: 30px;
        padding: 0 20px;
    }

    .banner-video .play-icon {
        width: 35px;
        height: 35px;
    }
}

@media(max-width:430px) {
    .banner-content .article p {
        line-height: 22px;
    }

    .banner-content .article a {
        line-height: 28px;
    }
}