.z01List {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 20px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.z01List a {
    font-size: 20px;
    line-height: 2;
    color: #555;
    font-family: 'FrancoisOne';
}

.z01List a.active {
    color: rgb(75 107 188);
    border-bottom: 2px solid rgb(75 107 188);
}

.box1 {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}

.box1 .left {
    width: 40%;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.box1 .left h1 {
    font-size: 40px;
    text-transform: capitalize;
    line-height: 1.5;
    font-family: 'FrancoisOne';
}

.box1 .left .desc {
    margin-top: 20px;
    font-size: 16px;
    line-height: 29px;
}

.box1 .left a {
    margin-top: 25px;
    background: rgb(113 128 150);
    padding: 20px;
    font-size: 14px;
    color: transparent !important;
    text-transform: uppercase;
    display: inline-flex;
    overflow: hidden;
    transition: all 0.6s ease;
    text-shadow: 0 0 0 #fff, 400px 0 0 #fff;
    font-family: 'FrancoisOne';
}

.box1 .left a:hover {
    background: #2a2a2a;
    text-shadow: -400px 0 0 #fff, 0 0 0 #fff;
}

.box1 .right {
    width: 60%;
}

.box1 .right img {
    width: 100%;
}

.box2 {
    margin-top: 45px;
}

.box2 table {
    width: 100%;
}

td p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}


.box3 .title {
    color: #000;
    font-size: 40px;
    font-family: 'FrancoisOne';
    line-height: 2;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

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

.Ny_ProductList {
    margin-bottom: 30px;
    width: calc((100% / 5) - 15px);
}

.Ny_ProductList a {
    display: block;
    overflow: hidden;
    transition: .25s;
}


.Ny_ProductList a .img {
    overflow: hidden;
    border: 1px solid #ccc;
}

.Ny_ProductList a img {
    width: 100%;
    height: 100%;
    transition: 1s;
    object-fit: cover;
}

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

.Ny_ProductList a .text {
    height: 90px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
}

.Ny_ProductList a .text h1 {
    color: #333;
    font-size: 16px;
    font-family: 'FrancoisOne';
    margin-bottom: 0;
}

.Ny_ProductList a .text p {
    display: block;
    color: rgb(75 107 188);
    font-size: 16px;
    font-family: 'FrancoisOne';
    margin-bottom: 0;
}

.box3>a {
    color: #fff;
    background: rgb(75 107 188);
    display: block;
    font-family: 'FrancoisOne';
    width: 165px;
    height: 47px;
    text-align: center;
    line-height: 47px;
    margin: 0 auto;
    position: relative;
}

.box3>a:before {
    content: "";
    display: block;
    background-color: inherit;
    border-radius: inherit;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.75;
    -webkit-animation: waves 1s infinite;
    animation: waves 1s infinite;
}

@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes waves {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}


@media screen and (max-width: 992px) and (min-width: 0px) {
    .box1 .left {
        width: 100%;
    }

    .box1 .right {
        width: 100%;
    }

    .z01ListBox {
        overflow-x: scroll;
    }

    .z01List {
        min-width: 992px;
    }
}


@media screen and (max-width: 960px) and (min-width: 0px) {
    .box1 .left h1 {
        font-size: 24px;
    }

    .box1 .left .desc {
        font-size: 14px;
        line-height: 2;
    }
}

@media screen and (max-width: 640px) and (min-width:0px) {
    .Ny_ProductList a .text {
        font-size: 12px;
        line-height: 3;
    }

    .Ny_ProductList {
        margin-bottom: 30px;
        width: calc((100% / 2) - 15px);
    }

    .z01List {
        min-width: 800px;
    }

    .z01List a {
        font-size: 16px;
    }
}