 /*product*/
 .product {
     position: relative;
     color: #fff;
 }

 .product .product-item {
     height: 100vh;
     padding: 0 7vw;
     box-sizing: border-box;
     display: flex !important;
     flex-direction: column;
     justify-content: center;
     align-items: flex-start;
 }

 .product-item-cover {
     background-position: 50%;
     background-repeat: no-repeat;
     background-size: cover;
 }

 .product .product-item h1 {
     line-height: 1.3;
     font-size: 29px;
     margin-bottom: 0px;
     font-weight: 600;
 }

 .product .product-item h3 {
     font-size: 32px;
     margin-bottom: 24px;
 }

 .product .product-item h5 {
     font-size: 20px;
     margin-bottom: 60px;
 }

 .product .the_button {
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 10px 20px;
     font-size: 14px;
     transition: all 225ms;
     background: transparent;
     cursor: pointer;
     border: 1px solid;
     -o-border-image: var(--border-gradient-blue) !important;
     border-image: linear-gradient(90deg, #0083ff, #00d1ff) 1 1 !important;
 }

 .product .the_button .gradient_text {
     background-image: linear-gradient(90deg, #0083ff, #00d1ff);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .product .the_button svg.svg-icon {
     width: 12px;
     height: 12px;
     margin-left: 12px;
     vertical-align: -0.15em;
     fill: #00d1ff;
     overflow: hidden;
 }

 .product .the_button:hover:not(:disabled) {
     background: linear-gradient(90deg, #0083ff, #00d1ff);
     box-shadow: rgba(0, 3, 10, 0.1) 0 0 20px;
 }

 .product .the_button:hover:not(:disabled) span {
     color: #fff;
     background: none;
     -webkit-text-fill-color: #fff;
 }

 .product .the_button:hover:not(:disabled) .svg-icon {
     fill: #fff;
 }

 .product-page {
     position: absolute;
 }
 .banner_c::after {
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/shub.png);
    background-size: cover;
    opacity: 0.8;
    position: absolute;
    bottom: 18px;
    right: 50%;
    transform: translateY(-50%);
    z-index: 999;
    animation: mouse 0.5s infinite ease-in-out alternate;
}

@keyframes mouse{
	from{
		transform:translateY(-50%) translateY(-15px)
	}
	to{
		transform:translateY(-50%) translateY(0px)
	}
}

 @media (min-width: 992px) {
     .product-page {
         top: 50%;
         right: 10vw;
         z-index: 1;
         transform: translateY(-50%);
     }
 }

 .product-pageitem {
     width: 380px;
     padding: 20px;
     display: flex;
     align-items: center;
     border: 1px solid transparent;
     border-bottom: 1px solid #f3f5f8;
     box-sizing: border-box;
     cursor: pointer;
 }

 .product-pageitem img {
     display: block;
     width: 150px;
     height: auto;

     margin-right: 20px;
     border-radius: 8px;
     background-color: #383e41;
 }

 .product-pageitem section {
     flex: 1;
     text-align: left;
 }

 .product-pageitem section h3 {
     font-weight: 600;
     font-size: 18px;
     margin-bottom: 20px;
 }

 .product-pageitem section p {
     font-size: 16px;
 }

 .product-pageitem:hover,
 .product-pageitem.is-active {
     -o-border-image: linear-gradient(90deg, #0083ff, #00d1ff) 1 1;
     border-image: linear-gradient(90deg, #0083ff, #00d1ff) 1 1;
 }

 .product-pageitem:hover section h3,
 .product-pageitem.is-active section h3,
 .product-pageitem:hover section p,
 .product-pageitem.is-active section p {
     background-image: linear-gradient(90deg, #0083ff, #007aff);
     background-clip: text;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 @media only screen and (max-width:992px) {
     .product .product-item {
         padding: 0 20px;
     }

     .product .product-item h1 {
         font-size: 18px;
         margin-bottom: 0px;
         margin: 0;
         top: 32px;
         position: absolute;
         left: 20px;
     }

     .product .product-item h3 {
         font-size: 16px;
         margin-top: 20px;
         margin-bottom: 16px;
         margin: 0;
     }

     .product .product-item h5 {
         font-size: 14px;
         margin-bottom: 16px;
         top: 70px;
         position: absolute;
         left: 20px;
     }

     .product .the_button {
         padding: 8px 14px;
         margin: 0;
         position: absolute;
         top: 104px;
     }

     .product-page {
         width: 100%;
         top: auto;
         right: 0;
         left: 0;
         bottom: 40px;
         z-index: 1;
         display: flex !important;
         flex-direction: row;
         justify-content: flex-start;
         overflow-x: auto;
     }

     .product-page::-webkit-scrollbar {
         width: 4px;
         height: 4px
     }

     .product-page::-webkit-scrollbar-button:vertical {
         display: none
     }

     .product-page::-webkit-scrollbar-track,
     ::-webkit-scrollbar-corner {
         background-color: transparent;
     }

     .product-page::-webkit-scrollbar-thumb {
         border-radius: 10px;
         background-color: rgba(255, 255, 255, .3)
     }

     .product-page::-webkit-scrollbar-thumb:vertical:hover {
         background-color: rgba(255, 255, 255, .35)
     }

     .product-page::-webkit-scrollbar-thumb:vertical:active {
         background-color: rgba(255, 255, 255, .38)
     }

     .product-pageitem {
         min-width: 380px;
         border: 1px solid #f3f5f8;
         margin: 0 20px;
     }