.web-page .txt-desc {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    background: var(--main-color);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}



.web-page .img-page {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.web-page .img-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 451px;
    height: 70vh;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 14.8%, #FFF 65.84%);
    z-index: 1;

    @media only screen and (max-width: 768px) {
        left: -55%;
    }
}

.web-page .img-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8%;
    width: 160px;
    height: 70vh;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 10.22%, #FFF 64.92%);
    transform: rotate(180deg);
    z-index: 1;

    @media only screen and (max-width: 768px) {
        right: -15%;
    }
}

.web-page .img-page .img-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: moveUpDown 15s ease-in-out infinite;
}

.web-page .img-page img {
    width: 100%;
    height: auto;
    display: block;
}


@keyframes moveUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(calc(70vh - 100%));
    }

    100% {
        transform: translateY(0);
    }
}

.search-web .searchform {
    width: 70%;

    @media only screen and (max-width: 768px) {
        width: 90%;
    }
}

.search-web .searchform .search-field {
    font-size: 18px;
    background: var(--main-color);
    border-radius: 99px;
    box-shadow: 0 4px 60px 0 rgba(40, 55, 79, 0.10);
    height: 60px;
    padding: 30px 50px;
    color: #fff !important;
    
    position: relative;
}

.search-web .searchform .search-field::placeholder {
    color: #fff !important;
}

.search-web .searchform .ux-search-submit.submit-button {
    border-radius: 99px;
    padding: 5px 35px;
    background: #FFF !important;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
}




.web-layout .website-tabs {
    @media only screen and (max-width: 768px) {
        flex-direction: column;
        gap: 20px !important;
    }
}

.web-layout .website-tabs .tab-list {
    width: 20%;
    position: relative;

    @media only screen and (max-width: 768px) {
        width: 100%;
    }
}

.web-layout .website-tabs .tab-list .list-wrap {
    top: 30px;
}

.list-wrap .nav-title {
    @media only screen and (max-width: 768px) {
        justify-content: center !important;
        gap: 15px !important;
    }
}

.list-wrap .nav-title svg {
    width: 33px;
    height: 33px;
}

.web-layout .website-tabs .tab-list .heading-title {
    color: #4A4B4C;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
}

.web-layout .website-tabs .tab-list .nav {
    @media only screen and (max-width: 768px) {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        width: auto;
        border-radius: 10px;
        padding: 13px;
        gap: 15px;
    }

}

.web-layout .website-tabs .nav-link {
    padding: 12px 24px;
    min-height: auto;
    line-height: 1.5;
    width: 100%;
    border: 3px solid transparent;
    border-radius: 99px;
    background: linear-gradient(white, white) padding-box, var(--main-color) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(250, 132, 9, 0.20);
    margin: 0 0 20px 0;
    float: right;

    @media only screen and (max-width: 768px) {
        flex: 0 0 auto;
        white-space: nowrap;
        width: max-content;
    }
}



.web-layout .website-tabs .nav-link span {
    background: var(--main-color);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.web-layout .website-tabs .nav-link.active {
    background: var(--main-color);
    border: none;
}

.web-layout .website-tabs .nav-link.active span {
    background: none;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.web-layout .website-tabs .tab-content {
    flex: 1;
}

.web-layout .website-tabs .list-website {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    @media only screen and (max-width: 768px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.web-layout .website-tabs .list-website .website-item {
    padding: 16px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
}

.web-layout .website-tabs .list-website .website-item:hover .thumbanail img {
    cursor: pointer;
    transform: translate(0, calc(-100% + 28rem));
}

.web-layout .website-tabs .list-website .website-item .thumbanail {
    position: relative;
    max-height: 23rem;
    overflow: hidden;
    width: 100%;
    border-radius: 5px;
}

.web-layout .website-tabs .list-website .website-item .thumbanail img {
    object-fit: cover;
    border-radius: 5px;
    width: 100%;
    position: relative;
    transition: all 8s ease-in-out;
}

.web-layout .website-tabs .list-website .website-item .thumbanail .content-thumbnail {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 23rem));
    opacity: 0;
    transition: all 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

.web-layout .website-tabs .list-website .website-item:hover .thumbanail .content-thumbnail {
    transform: translate(-50%, calc(-50% + 23rem));
    opacity: 1;
}

.web-layout .website-tabs .list-website .website-item .thumbanail .content-thumbnail .btn-thumbnail {
    width: 80%;
    margin: 0 auto;
    padding: 15px;

    @media only screen and (max-width: 768px) {
        padding: 23px;
    }
}

.web-layout .website-tabs .list-website .website-item .thumbanail .content-thumbnail .btn-thumbnail span {
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    width: 100%;
    display: block;
}

.web-layout .website-tabs .list-website .website-item .thumbanail .content-thumbnail .btn-popup {
    border-radius: 99px;
    border: 2px solid #fff;
    background: var(--main-color);
    color: #fff;

    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
}

.web-layout .website-tabs .list-website .website-item .thumbanail .content-thumbnail .btn-view {
    border-radius: 99px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--main-color) border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;

    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.08);
}

.web-layout .website-tabs .list-website .website-item .thumbanail .content-thumbnail .btn-popup span {
    color: #fff;
}

.web-layout .website-tabs .list-website .website-item .thumbanail .content-thumbnail .btn-view span {
    background: var(--main-color);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}



.web-layout .website-tabs .list-website .website-item .content {
    margin-top: 45px;
    border-bottom: 2px solid var(--main-color, #FFC800);
}

.web-layout .website-tabs .list-website .website-item .content .title a {
    font-size: 18px;
    font-weight: 600;
    line-height: 140%;
    color: #000;
    text-transform: uppercase;
}

.web-layout .website-tabs .list-website .website-item .info-feature {
    margin-top: 20px;
}

.web-layout .website-tabs .list-website .website-item .info-feature .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.web-layout .website-tabs .list-website .website-item .feature-item.like {
    gap: 7px;
}

.web-layout .website-tabs .list-website .website-item .feature-item .value {
    color: #FFC800;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
}

.web-layout .website-tabs .list-website .website-item .feature-item.like,
.web-layout .website-tabs .list-website .website-item .feature-item.like .value {
    color: #4A4B4C;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%
}



.web-layout .website-tabs .list-website .website-item .content .price {
    margin-top: 10px;
}

.web-layout .website-tabs .list-website .website-item .content .price span {
    background: var(--main-color);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
}