:root {
    --rootWidth: 1280px;
    --padding: 20px;

    --headerPadding: 60px;

    --buttonWithBorderBorderColor: rgb(43 167 188);
    --buttonWithBorderBgColor: #FFF;
    --buttonWithBorderFontColor: #FFF;
    --buttonWithBorderHoverColor: rgb(43 167 188);
    --buttonWithBorderHoverBgColor: rgb(43 167 188);
    --buttonWithBorderHoverFontColor: #FFF;
    --buttonWithBorderHoverShadow: 0 0 0px 4px rgb(19, 132, 152, 30%);

    --buttonBackgroundColor: rgb(43 167 188);
    --buttonFontColor: #FFF;
    --buttonHoverBackgroundColor: rgb(19, 132, 152);
    --buttonHoverFontColor: #FFF;
    --buttonHoverShadow: 0 0 4px 2px rgb(19, 132, 152, 30%);

    --buttonRadius: 0;
    --inputRadius: 0;

    --inputWithBorderBorderColor: #DDD;
    --inputWithBorderBgColor: #FFF;
    --inputWithBorderFontColor: #000;
    --inputWithBorderFocusBorderColor: var(--themeColor);
    --inputWithBorderFocusShadow: 0 0 0px 4px rgba(42, 86, 93, 0.3);

    --themeColor: rgb(43 167 188);

    --headerHeight: 60px;
    --sectionPadding: 150px;
    --sectionh2Size: 38px;
    --sectionh3Size: 22px;
}

@media only screen and (max-width: 1200px) {
    :root {
        --headerHeight: 50px;
        --sectionPadding: 100px;
    }
}
@media only screen and (max-width: 1024px) {
    :root {
        --sectionPadding: 80px;
        --sectionh2Size: 36px;
        --sectionh3Size: 20px;
    }
}
@media only screen and (max-width: 768px) {
    :root {
        --sectionPadding: 60px;
        --sectionh2Size: 32px;
        --sectionh3Size: 18px;
    }
}
@media only screen and (max-width: 600px) {
    :root {
        --sectionPadding: 50px;
        --sectionh2Size: 30px;
        --sectionh3Size: 16px;
    }
}
@media only screen and (max-width: 450px) {
    :root {
        --sectionPadding: 40px;
        --sectionh2Size: 28px;
        --sectionh3Size: 14px;
    }
}


html {
    font-family: var(--fontFamily);
	font-weight: var(--fontWeight);
    font-style: var(--fontStyle);
    font-size: var(--fontSize);
    color: var(--fontColor);
    overflow-x: hidden;
}
/*-------------------------------pop------------------------------*/
.pop {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1001;
	visibility: hidden;
}
#pop {
	visibility: visible;
}
.pop-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(0,0,0,.8);
	z-index: 1;
}
.pop-main {
	position: fixed;
	z-index: 2;
	width: 60%;
	max-height: calc(100% - 100px);
	left: 50%;
	top: 50%;
	transform: translate(-50%, 50%);
	background: #FFF;
	border-radius: 0.5rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
}
#pop .pop-main {
	transform: translate(-50%, -50%);
	transition-duration: 300ms;
}
@media only screen and (max-width: 768px){
	.pop-main {
		width: 100%;
		top: auto;
		bottom: 0;
		border-radius: 0.5rem 0.5rem 0 0;
	}
	#pop .pop-main {
		transform: translate(-50%, 0);
	}
}
.pop-head {
	height: 56px;
    padding: 0 10px 0 20px;
	background: #FFF;
	border-bottom: #DDD 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pop-title {
	height: 100%;
    font-weight: 600;
    font-size: 18px;
	display: flex;
	align-items: center;
}
.pop-close {
	width: 36px;
	height: 36px;
    background: #EEE;
    border-radius: 50%;
	position: relative;
	cursor: pointer;
	user-select: none;
	display: flex;
}
.pop-close::before {
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	overflow: hidden;
	top: 50%;
    left: 50%;
	background: #000;
	transform: translate(-50%, -50%) rotate(45deg);
}
.pop-close::after {
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	overflow: hidden;
	top: 50%;
    left: 50%;
	background: #000;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.pop-close:hover {
    background: #DDD;
}
.pop-box {
	width: 100%;
    max-height: 600px;
    padding: 30px;
    font-weight: 300;
    font-size: 14px;
    color: #777;
    line-height: 25px;
    overflow-y: overlay;
}

/*-------------------------------picture------------------------------*/
picture {
    width: 100%;
    height: 0;
    background: #e7e7e9;
    overflow: hidden;
    position: relative;
    transition: all 300ms;
    display: flex;
}
picture::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    animation: skeleton-translate 1s infinite;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    z-index: 1;
}
picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
    transition: all 300ms;
}
picture.loaded::after {
    content: unset;
}
.picture-set-padding {
    width: 100%;
    height: 0;
    position: relative;
}
.picture-set-padding picture {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}
.picture-set-padding picture img {
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
    left: unset;
    top: unset;
}

.layout {
    width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
/*-------------------------header-----------------------*/
.main {
    width: 100%;
    max-width: var(--rootWidth);
    padding: 0 var(--padding);
}
header {
    width: 100%;
    background: #FFF;
    position: fixed;
    z-index: 1000;
    box-shadow: 0 0 4px 2px rgb(0 0 0 / 10%);
    display: flex;
    justify-content: center;
}
.header-main {
    height: var(--headerHeight);
    max-width: unset;
    display: grid;
    grid-template-columns: calc(50% - 100px) 200px calc(50% - 100px);
}
.header-logo {
    height: var(--headerHeight);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo {
    height: 100%;
    padding: 18px 0;
}
.logo img {
    height: 100%;
}
.header-menu {
    height: 100%;
    display: flex;
}
.header-menu-box {
    height: 100%;
    display: flex;
}
.header-menu-box-slider {
    height: 100%;
    display: flex;
}
.header-menu-box-slider-head {
    display: none;
}
.header-menu-box-slider-main {
    height: 100%;
    display: flex;
}
.header-menu-ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.header-menu-li {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.header-menu-a {
    height: 100%;
    position: relative;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.header-menu-a:hover {
    color: var(--themeColor);
    text-decoration: underline;
}
.header-slider {
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    background: #FFF;
    overflow: hidden;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: ease-in 300ms;
}
.header-slider-show {
    visibility: visible;
    opacity: 1;
}
.header-slider-box {
    padding: 20px 0;
    transition: all 300ms;
    display: flex;
    flex-wrap: nowrap;
    gap: calc(100vw / 10);
}
.header-slider-item {
    position: relative;
    display: flex;
}
.header-slider-item:last-child {
    margin-right: 20px;
}
.header-slider-item::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    inset: 0;
    background: rgb(255 255 255 / 74%);
}
.header-slider-item-selected::before {
    display: none;
}
.header-slider-banner {
    width: 300px;
    height: 100%;
    display: flex;
}
.header-slider-banner img {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.header-slider-ul {
    min-width: 150px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}
.header-slider-li {
    display: flex;
}
.header-slider-li a {
    width: 100%;
    height: 100%;
    padding: 5px 0;
    color: #333;
    font-size: 12px;
    font-weight: 300;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
}
.header-slider-li a:hover {
    color: var(--themeColor);
    text-decoration: underline;
}

.header-social {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}
.header-social-box {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-social-box a {
    width: 24px;
    height: 24px;
    overflow: hidden;
    color: #333;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-social-box a:hover {
    color: var(--themeColor);
}

.header-launage {
    height: 100%;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.header-launage-wraper {
    height: 30px;
    position: relative;
    display: flex;
}
.header-launage-head {
    height: 100%;
    padding: 0 2px;
    border-bottom: #000 1px solid;
    font-size: 12px;
    color: #000;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 3px;
}
.header-launage-head::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 5px solid #000;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
.header-launage-box {
    position: absolute;
    left: 0;
    top: 100%;
    background: #FFF;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
}
.header-launage:hover .header-launage-box {
    opacity: 1;
    visibility: visible;
}
.header-launage-box-value {
    cursor: pointer;
    user-select: none;
    padding: 5px 14px;
    font-size: 12px;
    color: #000;
    text-decoration: underline;
}
.header-launage-box-value:hover {
    color: var(--themeColor);
}

@media only screen and (max-width: 1200px) {
    .header-menu-icon {
        --w: 24px;
        width: var(--w);
        height: 100%;
        cursor: pointer;
        user-select: none;
        display: flex;
        align-items: center;
    }
    .header-menu-icon span {
        width: 100%;
        height: var(--w);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
    .header-menu-icon i {
        width: 100%;
        height: 2px;
        background: #000;
    }

    .logo {
        padding: 15px 0;
    }
    .header-menu {
        position: relative;
    }
    .header-menu-box {
        position: absolute;
        left: calc(var(--padding) - calc(var(--padding) * 2));
        top: 0;
        z-index: 1001;
        width: 100vw;
        height: 100vh;
        visibility: hidden;
    }
    #header-menu-box {
        visibility: visible;
    }
    .header-menu-box-overlay {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        inset: 0;
        background: rgb(0 0 0 / 40%);
    }
    .header-menu-box-slider {
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        width: 100%;
        max-width: 320px;
        background: #FFF;
        display: flex;
        flex-direction: column;
        transition: ease-in 300ms;
        transform: translateX(-100%);
    }
    #header-menu-box .header-menu-box-slider {
        transform: translateX(0);
    }
    .header-menu-box-slider-head {
        width: 100%;
        height: 50px;
        padding: 0 15px;
        border-bottom: #DDD 1px solid;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-menu-box-slider-head-home {
        height: 18px;
        color: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-menu-box-slider-head-home img {
        max-width: 100%;
        max-height: 100%;
    }
    .header-menu-box-slider-head-close {
        width: 34px;
        height: 34px;
        background: #EEE;
        position: relative;
    }
    .header-menu-box-slider-head-close i {
        width: 100%;
        height: 100%;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-menu-box-slider-head-close i:first-child:before {
        content: "";
        width: 40%;
        height: 2px;
        background: #333;
        transform: rotate(45deg);
    }

    .header-menu-box-slider-head-close i:last-child:after {
        content: "";
        width: 40%;
        height: 2px;
        background: #333;
        transform: rotate(-45deg);
    }
    .header-menu-box-slider-head-close:active {
        background: #000;
    }
    .header-menu-box-slider-head-close:active i::before, .header-menu-box-slider-head-close:active i::after {
        background: #FFF;
    }
    .header-menu-box-slider-main {
        width: 100%;
        height: calc(100% - 50px);
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .header-menu-ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }
    .header-menu-li {
        width: 100%;
        height: 40px;
        padding-right: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-menu-li-child {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-menu-li-child::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: #000 2px solid;
        border-right: #000 2px solid;
        transform: rotate(45deg);
    }
    .header-menu-a {
        padding: 0 15px;
    }
    .header-slider {
        z-index: 1;
        top: 0;
        opacity: 1;
        visibility: visible;
        height: 100%;
        overflow: hidden;
        transform: translateX(100%);
    }
    #header-slider {
        transform: translateX(0);
    }
    .header-slider-box {
        width: 100%;
        padding: 0;
        flex-direction: column;
    }
    .header-slider-item {
        width: 100%;
        padding: 15px;
        height: 100%;
        display: none;
        flex-direction: column;
    }
    #header-slider-item {
        display: flex;
    }
    .header-slider-item-back {
        width: 30px;
        height: 30px;
        background: #EEE;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header-slider-item-back::after {
        content: "";
        width: 6px;
        height: 6px;
        border-top: #000 2px solid;
        border-left: #000 2px solid;
        transform: rotate(-45deg);
    }
    .header-slider-item::before {
        content: unset;
    }
    .header-slider-ul {
        padding: 0;
    }
    .header-slider-li a {
        padding: 10px 0;
        font-size: 12px;
        font-weight: 400;
        color: #000;
    }
    .header-slider-banner {
        margin-top: 20px;
        width: 100%;
        height: unset;
        padding: 0;
    }
}

@media only screen and (max-width: 500px) {
    .header-launage {
        position: absolute;
        left: 55px;
    }
    .header-launage-wraper {
        height: 24px;
    }
}

.setting-button {
    background: rgb(43 167 188);
}
.setting-button:hover {
    background: rgb(19, 132, 152);
}

.container {
    width: 100%;
    padding-top: var(--headerHeight);
    padding-bottom: var(--sectionPadding);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.video-banner {
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    position: relative;
    overflow: hidden;
}
.video-banner video {
    position: absolute;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.video-banner-info {
    --themeColor: #fff;
    --fontColor: #333;
    --textBg: #FFF;
    position: absolute;
    z-index: 2;
    height: 100%;
    left: 0;
    top: 0;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding-left: 445px;
}
.video-banner-info .header {
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    text-transform: uppercase;
}
.video-banner-info .subheading {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.video-banner-info .link {
    margin-top: 30px;
    position: relative;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.video-banner-info .link span {
    font-size: 24px;
    font-weight: 400;
    color: #FFF;
}
.video-banner-info .link i {
    width: 18px;
    height: 18px;
    border-right: #FFF 2px solid;
    border-bottom: #FFF 2px solid;
    transform: rotate(-45deg);
}
.video-banner-info .link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #FFF;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.video-banner-info .link:hover::after {
    width: 100%;
}
@media (orientation: portrait) {
    .video-banner {
        height: 56.25vw;
    }
}
@media only screen and (max-width: 1024px)  {
    .video-banner {
        height: 56.25vw;
    }
    .video-banner-info {
        width: 70%;
        padding: 20px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .video-banner-info .header {
        font-size: 32px;
    }
    .video-banner-info .subheading {
        font-size: 13px;
    }
    .video-banner-info .link {
        gap: 6px;
    }
    .video-banner-info .link span {
        font-size: 16px;
    }
    .video-banner-info .link i {
        width: 12px;
        height: 12px;
    }
}
@media only screen and (max-width: 768px) {
    .video-banner-info .header {
        font-size: 24px;
        font-weight: 600;
    }
    .video-banner-info .link span {
        font-size: 14px;
    }
    .video-banner-info .link i {
        width: 8px;
        height: 8px;
    }
}
@media only screen and (max-width: 500px) {
    .video-banner-info {
        width: 100%;
        padding: var(--padding);
    }
    .video-banner-info .header {
        font-size: 18px;
    }
    .video-banner-info .subheading {
        font-size: 10px;
        letter-spacing: 0;
    }
}

.index-tab {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.index-tab-head {
    width: fit-content;
    position: relative;
    padding: 2vw 0 2vw 0;
    display: flex;
}
.index-tab-head-box {
    display: flex;
}
.index-tab-head-item {
    width: 200px;
    height: 40px;
    background: #FFF;
    font-size: 14px;
    font-weight: 500;
    color: #777;
    text-transform: uppercase;
    transition: all 300ms;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-tab-head-item:hover {
    color: var(--themeColor);
}
#index-tab-head-item {
    color: #000;
}
.index-tab-head-line {
    content: "";
    width: calc(100% / 3);
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 2vw;
    transform: translateX(100%);
}
@media only screen and (max-width: 768px) {
    .index-tab-head-box {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
    .index-tab-head-item {
        width: unset;
        font-size: 13px;
    }
}
@media only screen and (max-width: 550px) {
    .index-tab-head-item {
        font-size: 10px;
        text-align: center;
    }
}

.index-tab-box {
    width: 100%;
    display: flex;
}
.index-tab-box-wraper {
    width: 100%;
    height: calc(100vw / 4);
    min-height: 300px;
    background: #fafafa;
    overflow: hidden;
}
@media only screen and (max-width: 768px) {
    .index-tab-box-wraper {
        height: unset;
        padding: 10px;
    }
}
.index-tab-box-item {
    height: 100%;
    display: none;
}
#index-tab-box-item {
    display: flex;
    justify-content: center;
    width: 100%;
}

.index-aboutus {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-aboutus-content {
    width: 100%;
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
}
.index-aboutus-content-image {
    height: 100%;
    display: flex;
    align-items: center;
}
.index-aboutus-content-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.index-aboutus-content-text {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media only screen and (max-width: 1024px) {
    .index-aboutus-content-text {
        font-size: 13px;
    }
}
@media only screen and (max-width: 768px) {
    .index-tab-box-wraper {
        height: unset;
    }
    .index-aboutus-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .index-aboutus-content-text {
        padding-top: 10px;
        font-size: 16px;
    }
}
@media only screen and (max-width: 450px) {
    .index-aboutus {
        padding: 0;
    }
    .index-aboutus-content-text {
        font-size: 12px;
    }
}

.index-ca {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}
.index-ca-main {
    height: 100%;
    display: flex;
}
.index-ca-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.index-ca-item {
    width: 18%;
    min-width: 180px;
    display: flex;
}
@media only screen and (max-width: 830px) {
    .index-ca-box {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }
    .index-ca-item {
        width: unset;
        min-width: unset;
    }
}
@media only screen and (max-width: 450px) {
    .index-ca-main {
        padding: 0;
    }
    .index-ca-box {
        gap: 10px;
    }
}


/* index-list */
.index-list {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}
.index-list-left, .index-list-right {
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    top: 0;
    transform: translate(0, 0);
    background: var(--buttonBackgroundColor);
    cursor: pointer;
    user-select: none;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-list-left {
    left: 0;
    display: none;
}
.index-list-right {
    right: 0;
}
.index-list-left::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: var(--buttonFontColor) 2px solid;
    border-left: var(--buttonFontColor) 2px solid;
    transform: rotate(-45deg);
}
.index-list-right::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: var(--buttonFontColor) 2px solid;
    border-bottom: var(--buttonFontColor) 2px solid;
    transform: rotate(-45deg);
}
.index-list-wraper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
}
.index-list-box {
    height: 100%;
    display: flex;
    flex-wrap: nowrap;
}
.index-list-box-item {
    width: calc(100vw / 5.6);
    min-width: 200px;
    height: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
}
.index-list-box-item:hover .index-list-box-item-image {
    transform: scale(1.4);
}
.index-list-box-item-image {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 300ms;
}
.index-list-box-item-image img {
    position: absolute;
    z-index: 2;
    min-width: 100%;
    min-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.index-list-box-item-heading {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.4vw;
    font-weight: 400;
    text-wrap: nowrap;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 480px) {
    .index-tab-box-wraper {
        min-height: 250px;
    }
    .index-list-box-item {
        width: calc(50vw - 10px);
        min-width: unset;
    }
    .index-list-box-item-heading {
        font-size: 13px;
    }
}

.listslider {
    float: left;
    width: 100%;
}
.listslider-main {
	float: left;
	width: 100%;
	position: relative;
}
.listslider-left, .listslider-right {
    position: absolute;
    z-index: 3;
    width: 40px;
    height: 40px;
    top: 50%;
    background: #FFF;
    border-radius: 50%;
	box-shadow: 0 4px 8px 0 rgb(0 0 0 / 4%), 0 12px 20px 0 rgb(0 0 0 / 8%);
    cursor: pointer;
    user-select: none;
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.listslider-left::after {
	content: "";
    width: 8px;
    height: 8px;
    border-left: #000 2px solid;
    border-top: #000 2px solid;
    transform: rotate(-45deg);
}
.listslider-right::after {
	content: "";
    width: 8px;
    height: 8px;
    border-right: #000 2px solid;
    border-bottom: #000 2px solid;
    transform: rotate(-45deg);
}
.listslider-left {
	left: 0;
    transform: translateX(calc(-100% - 10px)) translateY(-50%);
    display: none;
}
.listslider-right {
	right: 0;
    transform: translateX(calc(100% + 10px)) translateY(-50%);
}
.listslider-left:hover, .listslider-right:hover {
    background: #000;
}
.listslider-left:hover::after, .listslider-right:hover::after {
    border-color: #FFF;
}
.listslider-box {
	float: left;
	width: 100%;
	overflow: hidden;
	z-index: 1;
}
.listslider-ul {
	float: left;
    height: 100%;
    display: inline-flex;
    position: relative;
    z-index: 1;
	transition-property: transform;
	box-sizing: content-box;
    gap: 40px;
}
.listslider-li {
	width: calc((var(--rootWidth) - 190px) / 5);
	position: relative;
    display: flex;
    flex-direction: column;
}
.listslider-top {
	width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    position: relative;
}
.listslider-img {
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.listslider-img:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgb(0 0 0 / 10%);
    z-index: 2;
}
.listslider-img-box {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
}
.listslider-img-1 {
	float: left;
    width: 100%;
    height: 100%;
    position: relative;
    background: #e7e7e9;
    overflow: hidden;
}
.listslider-img picture:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    animation: skeleton-translate 1s infinite;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}
.listslider-img-2 {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s; 
}
.listslider-img-1 img, .listslider-img-2 img {
	position: absolute;
    z-index: 2;
    width: 100%;
    left: 0;
    top: 0;
    background: inherit;
}
/* Min iPad Air Width */
@media only screen and (min-width: 821px) {
    .listslider-top:hover .listslider-img-2 {
        opacity: 1;
        transform: scale(1);
    }
}

.listslider-info {
    position: relative;
	width: 100%;
    height: 100%;
    padding: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.listslider-color {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.listslider-color-item {
    width: 24px;
    height: 24px;
    padding: 2px;
    cursor: pointer;
    user-select: none;
    position: relative;
    display: flex;
}
.listslider-color-item::after {
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    position: absolute;
    inset: -2px;
    border-radius: 50%;
}
.listslider-color-item:hover::after {
    border: #999 1px solid;
}
#listslider-color-item::after {
    border: #000 2px solid;
}
.listslider-color-item-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.listslider-color-item-color {
    width: 100%;
    height: 100%;
    box-shadow: 0px 0px 0px 2px #000;
    display: flex;
}
.listslider-color-item-color span {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.8), inset 0px -1px 2px rgba(255, 255, 255, 0.5);
}

.listslider-category {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    color: #000;
}
.listslider-title {
    font-weight: 300;
    font-size: 15px;
    max-height: 40px;
    line-height: 20px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.listslider-view {
    width: fit-content;
    height: 40px;
    padding: 0 10px;
    background: var(--buttonBackgroundColor);
    color: var(--buttonFontColor);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
.listslider-view:hover {
    background: var(--buttonHoverBackgroundColor);
}
.listslider-review {
    display: flex;
    align-items: center;
}
.listslider-review-rating {
    color: #ffa400;
    display: flex;
}
.listslider-review-rating svg {
    width: 15px;
    height: 15px;
}
.listslider-review-text {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    user-select: none;
}
.listslider-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.listslider-button {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 10px;
    width: 80%;
    height: 38px;
    transform: translateX(-50%) translateY(calc(100% + 12px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
/* Min iPad Air Width */
@media only screen and (min-width: 821px) {
    .listslider-li:hover .listslider-button {
        transform: translateX(-50%) translateY(0);
    }
}
.listslider-cart, .listslider-wishlist {
    width: 34px;
    height: 34px;
    background: #000;
    color: #FFF;
}
.listslider-cart:hover, .listslider-wishlist:hover {
    box-shadow: 0 0 4px 2px rgb(0 0 0 / 40%);
}
.listslider-cart {
    padding: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.listslider-wishlist .thisBtn-text i {
    margin: 0;
    padding: 4px;
}
.listslider-cart svg, .listslider-wishlist .button-text i svg {
    max-width: 100%;
    max-height: 100%;
}
.listslider-wishlist .button-text i svg path {
    stroke: #FFF;
    fill: transparent;
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
}
#listslider-wishlist .button-text i svg path {
    stroke: #FFF;
    color: #FFF;
    fill: unset;
}

.listslider-img-header {
    position: absolute;
    z-index: 11;
    width: 100%;
    height: 100%;
    inset: 0;
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 1580px) {
    .listslider-left {
        transform: translateX(-15px) translateY(-50%);
    }
    .listslider-right {
        transform: translateX(15px) translateY(-50%);
    }
}
@media only screen and (max-width: 450px){
    .listslider-ul {
        gap: 20px;
    }
    .listslider-li {
        width: calc((100vw - 50px) / 2);
    }
    .listslider-sale {
        padding: 5px 10px;
        font-size: 14px;
    }
    .listslider-info {
        gap: 7px;
    }
    .listslider-color {
        gap: 5px;
    }
    .listslider-title {
        font-size: 12px;
        max-height: 30px;
        line-height: 15px;
    }
    .listslider-price {
        gap: 10px;
    }
    .listslider-price-now, .listslider-price-retail {
        font-size: 13px;
    }
}

/* WHY US */
.index-whyus {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.index-whyus-head {
    padding: var(--sectionPadding) 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.index-whyus-head .header {
    font-size: var(--sectionh2Size);
    font-weight: 300;
    color: #333;
    text-transform: uppercase;
}
.index-whyus-head h3 {
    font-size: var(--sectionh3Size);
    font-weight: 300;
    color: #333;
    text-transform: uppercase;
}
.index-whyus-box {
    width: 100%;
    display: flex;
}
.index-whyus-bg {
    width: 100%;
    position: relative;
    display: flex;
}
.index-whyus-bg-text {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 25%);
}
.index-whyus-bg-text-item {
    height: 100%;
    color: #FFF;
    position: relative;
}
.index-whyus-bg-text-item:hover {
    color: var(--themeColor);
}
.index-whyus-bg-text-item span:first-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    font-size: 2vw;
    font-weight: 400;
}
.index-whyus-bg-text-item span:last-child {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 20px);
    font-size: 0.8vw;
    font-weight: 500;
    text-align: center;
    text-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
    .index-whyus-box {
        display: unset;
        overflow-x: overlay;
    }
    .index-whyus-box::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        cursor: pointer
    }
    .index-whyus-box::-webkit-scrollbar-track {
        background:#EEE;
        -webkit-border-radius: 4px; 
        -moz-border-radius: 4px; 
        border-radius: 4px; 
    }
    .index-whyus-box::-webkit-scrollbar-thumb {
        -webkit-border-radius: 4px; 
        -moz-border-radius: 4px; 
        border-radius: 4px; 
        background: #444;
    }
    .index-whyus-bg {
        width: 200vw;
    }
    .index-whyus-bg-text-item span:first-child {
        font-size: 22px;
    }
    .index-whyus-bg-text-item span:last-child {
        font-size: 13px;
    }
}
@media only screen and (max-width: 480px) {
    .index-whyus-bg {
        width: 400vw;
    }
}

/* index logo */
.index-logo {
    padding-bottom: var(--sectionPadding);
    width: 100%;
    background: #fafafa;
    display: flex;
    justify-content: center;
}
.index-logo-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.index-logo-heading {
    padding: var(--sectionPadding) 0;
    font-size: var(--sectionh2Size);
    font-weight: 300;
    color: #333;
    text-transform: uppercase;
}
.index-logo-image {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2vw;
}
.index-logo-image-item {
    display: flex;
    transition: all 300ms;
}
.index-logo-image-item:hover {
    box-shadow: 0 8px 8px 2px rgb(0 0 0 / 20%);
}
.index-logo-image-item picture {
    background: #FFF;
}
@media only screen and (max-width: 768px) {
    .index-logo-image {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media only screen and (max-width: 480px) {
    .index-logo-image {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* blog */
.index-blog {
    width: 100%;
    display: flex;
    justify-content: center;
}
.index-blog-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.index-blog-head {
    padding: var(--sectionPadding) 0;
    font-size: var(--sectionh2Size);
    font-weight: 300;
    color: #333;
    display: flex;
    justify-content: center;
}
.blog-list-wraper {
    width: 100%;
    position: relative;
    display: flex;
}
.blog-list-box {
    width: 100%;
    display: flex;
    overflow: hidden;
}

/* index blog */
.blog-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.blog-item {
    position: relative;
    display: flex;
    flex-direction: column;
}
.blog-item-top {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.blog-item-info {
    width: 100%;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-item::after {
    content: "";
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgb(255, 255, 255, 50%);
    opacity: 0;
    visibility: hidden;
    transition: all 400ms;
}
.blog-item:hover::after {
    opacity: 1;
    visibility: visible;
}
.blog-item-title {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #333;
}
.blog-item-content {
    font-size: 13px;
    font-weight: 300;
    line-height: 20px;
    height: 60px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.blog-item-date {
    font-size: 12px;
    font-weight: 300;
    color: #333;
    display: flex;
    gap: 5px;
    align-items: center;
}
.blog-item-more {
    width: fit-content;
    display: flex;
    align-items: center;
}
.blog-item-more::before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px var(--themeColor) solid;
    border-right: 1px var(--themeColor) solid;
    transform: rotate(45deg);
}
.blog-item-more::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px var(--themeColor) solid;
    border-right: 1px var(--themeColor) solid;
    transform: rotate(45deg);
}
@media only screen and (max-width: 1024px) {
    .blog-list {
        gap: 14px;
    }
}
@media only screen and (max-width: 480px) {
    .blog-list-left, .blog-list-right {
        position: absolute;
        z-index: 3;
        width: 40px;
        height: 40px;
        top: 50%;
        background: var(--buttonBackgroundColor);
        cursor: pointer;
        user-select: none;
        -webkit-transition: all 300ms ease-in-out 0s;
        -moz-transition: all 300ms ease-in-out 0s;
        -o-transition: all 300ms ease-in-out 0s;
        transition: all 300ms ease-in-out 0s;
        display: flex;
        justify-content: center;
        align-items: center;
    
    }
    .blog-list-left {
        left: 0;
        transform: translate(-50%, -50%);
    }
    .blog-list-left::after {
        content: "";
        width: 8px;
        height: 8px;
        border-top: var(--buttonFontColor) 2px solid;
        border-left: var(--buttonFontColor) 2px solid;
        transform: rotate(-45deg);
    }
    .blog-list-right {
        right: 0;
        transform: translate(50%, -50%);
    }
    .blog-list-right::after {
        content: "";
        width: 8px;
        height: 8px;
        border-right: var(--buttonFontColor) 2px solid;
        border-bottom: var(--buttonFontColor) 2px solid;
        transform: rotate(-45deg);
    }
    .blog-list {
        width: unset;
        display: flex;
        flex-wrap: nowrap;
    }
    .blog-item {
        width: calc(100vw - calc(var(--padding) * 2));
    }
}

/* footer */
footer {
    width: 100%;
    background: #EEEEEE;
    padding-top: 100px;
    display: flex;
    justify-content: center;
}
.footer-main {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.footer-top {
    width: 100%;
    display: flex;
}

.footer-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.footer-nav-item {
	display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-nav-item-title {
    font-weight: 400;
	font-size: 13px;
    color: #000;
    text-transform: uppercase;
    text-wrap: nowrap;
}
.footer-nav-item-box {
	width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-nav-item-box-li {
    text-wrap: nowrap;
    display: flex;
    justify-content: flex-start;
}
.footer-nav-item-box-li a {
	color: #333;
	font-size: 12px;
}
.footer-nav-item-box-li a:hover {
	color: var(--themeColor);
    text-decoration: underline;
}


.newsletter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.newsletter-head {
    font-weight: 400;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
}
.newsletter-content {
    font-weight: 300;
    font-size: 13px;
    color: #333;
}
.newsletter-form {
    --newsletterHeight: 40px;
	height: var(--newsletterHeight);
    display: grid;
    grid-template-columns: 1fr 50px;
    gap: 5px;
}
.newsletter-input {
	width: 100%;
	height: var(--newsletterHeight);
    border-radius: var(--inputRadius);
    padding: 0 10px;
	background: #fff;
    border: #000 1px solid;
	color: #000;
    transition: all 300ms;
}
.newsletter-input:hover, .newsletter-input:focus {
    border-color: var(--themeColor);
    box-shadow: 0 0 4px 4px rgb(43 167 188 / 49%);
}
.newsletter-submit {
    height: var(--newsletterHeight);
    padding: 10px 5px;
    border-radius: var(--inputRadius);
    background: #333;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    user-select: none;
    transition: ease-out 300ms;
    display: flex;
    align-items: center;
    justify-content: center;
}
.newsletter-submit svg {
    max-width: 100%;
    max-height: 100%;
}
.newsletter-submit:hover {
    background: var(--buttonHoverBackgroundColor);
}

.footer-bottom {
    margin-top: 50px;
    border-top: #ddd 1px solid;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright {
    font-size: 13px;
    font-weight: 300;
    color: #333;
}
.copyright a {
    color: #333;
    text-transform: uppercase;
}

.footer-policy {
    display: flex;
    gap: 20px;
}
.footer-policy a {
    font-size: 13px;
    font-weight: 300;
    color: #333;
}
.footer-policy a:hover {
    color: var(--themeColor);
    text-decoration: underline;
}

@media only screen and (max-width: 1024px) {
    footer {
        padding-top: 60px;
    }
    .footer-nav {
        gap: 20px;
    }
}
@media only screen and (max-width: 768px) {
    footer {
        padding-top: 40px;
    }
    .footer-nav {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .footer-nav-item-title {
        text-wrap: unset;
    }
    .newsletter {
        grid-column-start: 1;
        grid-column-end: 5;
        grid-row-start: 2;
        grid-row-end: 3;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 14px;
    }
    .copyright {
        text-align: center;
    }
}
@media only screen and (max-width: 590px) {
    footer {
        padding-top: 50px;
    }
}
@media only screen and (max-width: 480px) {
    .footer-nav {
        grid-template-columns: calc(65% - 20px) 35%;
    }
    .newsletter {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 4;
        grid-row-end: 5;
    }
}
/*----------------------------------mediaview------------------------------*/
.mediaview {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1101;
    user-select: none;
    visibility: hidden;
}
#mediaview {
    visibility: visible;
}
#mediaview .mediaview-main {
    transition: all 0.3s ease;
    transform: scale(1);
}
.mediaview-overlay {
	position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0/0.8);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.mediaview-main {
    position: absolute;
    width: 800px;
    height: 800px;
    left: calc(50% - 400px);
	top: calc(50% - 400px);
	background: #FFF;
	border-radius: 4px;
	overflow: hidden;
    z-index: 2;
    transform: scale(0);
}
.mediaview-close {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    cursor: pointer;
}
.mediaview-close::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	top: 20px;
	left: 10px;
	background: #333;
	transform: rotate(45deg);
}
.mediaview-close::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	top: 20px;
	left: 10px;
	background: #333;
	transform: rotate(-45deg);
}
.mediaview-box {
	float: left;
	width: 100%;
	height: 100%;
	padding: 40px;
	overflow: hidden;
	background: #f8f9fb;
}
.mediaview-box-loading {
	position: absolute;
	z-index: 2;
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	left: 40px;
	top: 40px;
}
.mediaview-box-loading div {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #f8f9fb;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mediaview-box-loading div i {
	width: 50px;
    height: 50px;
    color: #2e60f8;
    vertical-align: middle;
    pointer-events: none;
    border: 6px solid transparent;
    border-top-color: currentcolor;
    border-radius: 50%;
    -webkit-animation: 1s loading linear infinite;
    animation: 1s loading linear infinite;
    position: relative;
}
.mediaview-box-loading div i::before {
    content: '';
    display: block;
    width: inherit;
    height: inherit;
    position: absolute;
    top: -6px;
    left: -6px;
    border: 6px solid currentcolor;
    border-radius: 50%;
    opacity: .5;
}
.mediaview-box-media {
	position: absolute;
	z-index: 1;
	width: calc(100% - 80px);
	height: calc(100% - 80px);
	left: 40px;
	top: 40px;
	background: #f8f9fb;
	display: flex;
	justify-content: center;
	align-items: center;
}
.mediaview-box-media img, .mediaview-box-media video {
	max-width: 100%;
	max-height: 100%;
}