        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,600&display=swap');

        * {
            box-sizing: border-box;
        }

        /*html,*/
        /*body {*/
        /*    overflow-x: hidden !important;*/
        /*}*/

        body {
            margin: 0;
            font-family: "Inter", sans-serif;
            overflow-x: hidden !important;
        }

        /* TOPBAR SESSION STRT */
        .topbar {
            background: #F9F871;
            text-align: center;
            padding: 11px 15px;
            font-size: 17px;
            color: #111111d0;
        }

        /* TOPBAR SESSION END  */

        /* NAVBAR SESSION STRT  */
        .velvet-nav {
            min-height: 74px;
            background: #fff;
            border-bottom: 1px solid #eee;
            position: relative;
            z-index: 999;
        }

        .logo {
            font-family: "Playfair Display", serif;
            font-size: 33px;
            font-style: italic;
            font-weight: 600;
            color: #3e3e3e;
        }

        .navbar-nav .nav-link {
            color: #050505e5;
            font-size: 16px;
            font-weight: 500;
            padding: 23px 6px;
        }

        .custom-dropdown {
            position: relative;
        }

        .custom-menu {
            display: block;
            visibility: hidden;
            opacity: 0;
            transform: translateY(15px);
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            padding: 0;
            border: 1px solid #eee;
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
            transition: .3s ease;
        }

        .custom-dropdown:hover .custom-menu {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .custom-menu li {
            list-style: none;
        }

        .custom-menu a {
            display: block;
            padding: 22px 35px;
            color: #0c1826;
            text-decoration: none;
            font-size: 16px;
            border-bottom: 1px solid #eee;
            transition: .3s ease;
            white-space: nowrap;
        }

        .custom-menu li:last-child a {
            border-bottom: 0;
        }

        .custom-menu a:hover {
            background: #fafafa;
            padding-left: 42px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cart-btn {
            border: 0;
            background: transparent;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #111111e1;
        }

        .contact-btn,
        .explore-btn {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .contact-btn {
            width: 178px;
            height: 46px;
            background: #3B3B3B;
            color: #fff;
            border-radius: 50px;
            gap: 15px;
            font-size: 13px;
            font-weight: 600;
        }

        .btn-text,
        .explore-text {
            position: relative;
        }

        .btn-text::after,
        .explore-text::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 1px;
            transition: .65s ease;
        }

        .btn-text::after {
            background: #fff;
        }

        .explore-text::after {
            background: #222;
        }

        .contact-btn:hover .btn-text::after,
        .explore-btn:hover .explore-text::after {
            width: 100%;
        }

        .arrow-wrap,
        .explore-arrow-wrap {
            border-radius: 50%;
            display: grid;
            place-items: center;
            overflow: hidden;
            position: relative;
            flex: 0 0 auto;
        }

        .arrow-wrap {
            width: 34px;
            height: 34px;
            background: #fff;
            color: #222;
        }

        .explore-arrow-wrap {
            width: 48px;
            height: 48px;
            background: #333;
            color: #fff;
        }

        .arrow,
        .explore-arrow {
            position: absolute;
            transition: .55s ease;
        }

        .arrow-two,
        .explore-arrow-two {
            transform: translate(-24px, 24px);
        }

        .contact-btn:hover .arrow-one,
        .explore-btn:hover .explore-arrow-one {
            transform: translate(24px, -24px);
        }

        .contact-btn:hover .arrow-two,
        .explore-btn:hover .explore-arrow-two {
            transform: translate(0, 0);
        }

        /* NAVBAR SESSION END  */

        /* HERO SESSION STRT  */
        .hero-section {
            min-height: calc(100vh - 126px);
            background:
                linear-gradient(rgba(0, 0, 0, .38), rgba(0, 0, 0, .38)),
                url("https://cdn.prod.website-files.com/68a29984683adbd857b2dcd9/68a468165defafcab4768abc_Hero%20Image.avif") top/cover no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            color: #fff;
            padding: 110px 0;
        }

        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 2;
        }

        .rating {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            border: 1px solid #fff;
            border-radius: 50px;
            padding: 8px 15px;
            font-size: 12px;
            margin-bottom: 20px;
        }

        .hero-content h1 {
            font-family: Georgia, serif;
            font-size: clamp(48px, 6vw, 80px);
            line-height: .92;
            margin-bottom: 29px;
        }

        .hero-content h1 em {
            font-style: italic;
            font-weight: 400;
        }

        .hero-content p {
            max-width: 560px;
            font-size: 16px;
            line-height: 1.6;
            font-weight: 600;
            margin-bottom: 38px;
        }

        .explore-btn {
            width: 305px;
            height: 58px;
            border-radius: 50px;
            background: #fff;
            color: #222;
            justify-content: space-between;
            padding: 0 8px 0 34px;
            font-size: 14px;
            font-weight: 500;
            gap: 15px;
        }

        .video-card {
            position: absolute;
            right: 34px;
            bottom: 10px;
            width: 460px;
            height: 300px;
            padding: 20px;
            border-radius: 40px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .2);
            backdrop-filter: blur(8px);
            z-index: 2;
            margin-bottom: 45px;
        }

        .video-thumb {
            width: 100%;
            height: 100%;
            border-radius: 150px;
            overflow: hidden;
            position: relative;
            background: #111;
        }

        .video-thumb video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-control {
            position: absolute;
            inset: 0;
            margin: auto;
            width: 84px;
            height: 84px;
            border-radius: 50%;
            border: 0;
            background: rgba(255, 255, 255, .12);
            color: #fff;
            font-size: 28px;
            backdrop-filter: blur(8px);
            display: grid;
            place-items: center;
            transition: .35s ease;
        }

        .video-control:hover {
            transform: scale(1.08);
        }

        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .76);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: .3s ease;
            padding: 20px;
        }

        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cart-modal {
            width: 480px;
            max-width: 100%;
            background: #fff;
            transform: scale(.92);
            transition: .3s ease;
        }

        .cart-overlay.active .cart-modal {
            transform: scale(1);
        }

        .cart-head {
            height: 64px;
            padding: 0 20px;
            border-bottom: 1px solid #e7e7e7;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .cart-head h5 {
            margin: 0;
            font-size: 18px;
            font-weight: 700;
            color: #333;
        }

        .cart-head button {
            border: 0;
            background: transparent;
            font-size: 22px;
            color: #333;
        }

        .cart-body {
            height: 225px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #444;
        }

        @media (max-width: 1199px) {
            .video-card {
                width: 390px;
                right: 25px;
            }
        }

        @media (max-width: 991px) {
            .velvet-nav {
                min-height: auto;
                padding: 14px 0;
            }

            .navbar-collapse {
                background: #fff;
                padding: 20px 0;
            }

            .navbar-nav .nav-link {
                padding: 14px 0;
            }

            .custom-menu {
                position: static;
                visibility: visible;
                opacity: 1;
                transform: none;
                box-shadow: none;
                border-radius: 10px;
                margin-bottom: 10px;
                display: none;
            }

            .custom-dropdown .custom-menu {
                position: static;
                display: none;
                visibility: visible;
                opacity: 1;
                transform: none;
                min-width: 100%;
                margin: 6px 0 10px;
                box-shadow: none;
                border-radius: 10px;
            }

            .custom-dropdown.mobile-open .custom-menu {
                display: block;
            }

            .custom-dropdown:hover .custom-menu {
                display: none;
            }

            .custom-dropdown.mobile-open:hover .custom-menu {
                display: block;
            }

            .custom-menu a {
                padding: 15px 22px;
            }

            .nav-actions {
                flex-direction: column;
                align-items: flex-start;
                gap: 18px;
            }

            .hero-section {
                min-height: auto;
                padding: 70px 0 260px;
            }

            .video-card {
                left: 24px;
                right: 24px;
                bottom: 45px;
                width: auto;
            }
        }

        @media (max-width: 575px) {
            .topbar {
                font-size: 12px;
                padding: 6px 10px;
            }

            .velvet-nav {
                min-height: 45px;
                padding: 8px 0;
            }

            .logo {
                font-size: 25px;
            }

            .navbar-toggler {
                padding: 0;
                font-size: 18px;
            }

            .cart-btn {
                font-size: 13px;
                gap: 6px;
            }

            .navbar-collapse {
                position: absolute;
                top: 100%;
                right: 8px;
                left: 8px;
                background: #fff;
                padding: 14px 24px;
                border-radius: 5px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
            }

            .navbar-nav .nav-link {
                padding: 8px 0;
                font-size: 14px;
            }

            .nav-actions {
                margin-top: 10px !important;
            }

            .nav-actions .cart-btn {
                display: none;
            }

            .contact-btn {
                width: 138px;
                height: 32px;
                font-size: 11px;
                gap: 8px;
            }

            .arrow-wrap {
                width: 25px;
                height: 25px;
            }

            .hero-section {
                min-height: auto;
                padding: 32px 0 35px;
                align-items: flex-start;
                background-position: center top;
            }

            .hero-content {
                max-width: 100%;
            }

            .rating {
                font-size: 10px;
                padding: 7px 12px;
                margin-bottom: 16px;
            }

            .hero-content h1 {
                font-size: 31px;
                line-height: 1.05;
                margin-bottom: 16px;
            }

            .hero-content p {
                font-size: 14px;
                line-height: 1.35;
                margin-bottom: 24px;
                max-width: 280px;
            }

            .explore-btn {
                width: 205px;
                height: 40px;
                padding: 0 5px 0 18px;
                font-size: 10px;
            }

            .explore-arrow-wrap {
                width: 34px;
                height: 34px;
            }

            .video-card {
                position: relative;
                left: auto;
                right: 42%;
                bottom: auto;
                width: 210px;
                height: 130px;
                padding: 10px;
                margin: 28px 8px 0 auto;
                border-radius: 25px;
            }

            .video-thumb {
                border-radius: 55px;
            }

            .video-control {
                width: 52px;
                height: 52px;
                font-size: 18px;
            }
        }

        /* HERO SESSION END  */

        /* VWHY SESSION STRT  */
        .vwhy-section {
            min-height: 220vh;
            background: #fff;
            position: relative;
            padding: 40px 0;

        }

        .vwhy-sticky {
            min-height: 160vh;
            position: sticky;
            top: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 70px 0;
        }

        .vwhy-oval {
            position: absolute;
            left: 50%;
            top: 52%;
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%) rotate(-14deg);
        }

        .vwhy-oval-light {
            width: 960px;
            height: 600px;
            border: 1px solid #ececec;
        }

        .vwhy-oval-dark {
            width: 805px;
            height: 480px;
            border: 1px solid rgba(0, 0, 0, .72);
        }

        .vwhy-center {
            max-width: 580px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 3;
        }

        .vwhy-rating {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            border: 1px solid #333;
            border-radius: 50px;
            padding: 8px 12px;
            font-size: 12px;
            color: #3d3d3d;
            margin-bottom: 16px;
        }

        .vwhy-center h2 {
            font-family: Georgia, serif;
            font-size: clamp(50px, 6vw, 76px);
            line-height: .95;
            color: #3d3d3d;
            margin-bottom: 28px;
            font-weight: 400;
        }

        .vwhy-center h2 em {
            font-style: italic;
        }

        .vwhy-center p {
            max-width: 520px;
            margin: 0 auto 36px;
            font-size: 17px;
            line-height: 1.45;
            color: #4c4c4c;
        }

        .vwhy-btn {
            width: 196px;
            height: 56px;
            background: #3a3a3a;
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 7px 0 34px;
            font-size: 14px;
            font-weight: 600;
        }

        .vwhy-btn-icon {
            width: 44px;
            height: 44px;
            background: #fff;
            color: #333;
            border-radius: 50%;
            display: grid;
            place-items: center;
            overflow: hidden;
            position: relative;
        }

        .vwhy-btn-icon i {
            position: absolute;
            transition: .45s ease;
        }

        .vwhy-arrow-two {
            transform: translate(-24px, 24px);
        }

        .vwhy-btn:hover .vwhy-arrow-one {
            transform: translate(24px, -24px);
        }

        .vwhy-btn:hover .vwhy-arrow-two {
            transform: translate(0, 0);
        }

        .vwhy-card {
            width: 270px;
            min-height: 225px;
            background: #f5f5f5;
            border-radius: 7px;
            position: absolute;
            z-index: 4;
            text-align: center;
            padding: 40px 28px 30px;
            will-change: transform;
            transform: translate3d(0, 0, 0);
        }

        .vwhy-icon {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            margin: 0 auto 26px;
            font-size: 30px;
            color: #333;
        }

        .vwhy-card h3 {
            font-family: Georgia, serif;
            font-size: 24px;
            line-height: 1.25;
            color: #444;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .vwhy-card p {
            font-size: 17px;
            line-height: 1.42;
            color: #555;
            margin: 0;
        }

        .vwhy-card-1 {
            left: 100px;
            top: -45px;
        }

        .vwhy-card-2 {
            right: 70px;
            top: -5px;
        }

        .vwhy-card-3 {
            left: 170px;
            top: 115%;
            transform: translateY(220px);
        }

        .vwhy-card-4 {
            right: 210px;
            top: 130%;
            transform: translateY(220px);
        }

        @media (max-width: 1199px) {
            .vwhy-card {
                width: 245px;
            }

            .vwhy-card-1 {
                left: 25px;
            }

            .vwhy-card-2 {
                right: 25px;
            }

            .vwhy-card-3 {
                left: 60px;
            }

            .vwhy-card-4 {
                right: 90px;
            }

            .vwhy-oval-light {
                width: 900px;
            }

            .vwhy-oval-dark {
                width: 660px;
            }
        }

        @media (max-width: 991px) {
            .vwhy-section {
                min-height: auto;
            }

            .vwhy-sticky {
                position: relative;
                min-height: auto;
                padding: 70px 0;
                overflow: hidden;
            }

            .vwhy-sticky .container-fluid {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 22px;
                align-items: stretch;
            }

            .vwhy-center {
                grid-column: 1 / -1;
                max-width: 620px;
                margin-bottom: 25px;
            }

            .vwhy-oval-light {
                width: 760px;
                height: 480px;
            }

            .vwhy-oval-dark {
                width: 560px;
                height: 340px;
            }

            .vwhy-card {
                position: relative;
                inset: auto !important;
                transform: none !important;
                width: 100%;
                max-width: none;
                min-height: auto;
                margin: 0;
            }

            .vwhy-card-1,
            .vwhy-card-2,
            .vwhy-card-3,
            .vwhy-card-4 {
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
            }
        }

        @media (max-width: 575px) {
            .vwhy-sticky {
                padding: 55px 0;
            }

            .vwhy-sticky .container-fluid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .vwhy-rating {
                font-size: 10px;
                padding: 7px 9px;
            }

            .vwhy-center h2 {
                font-size: 38px;
            }

            .vwhy-center p {
                font-size: 14px;
                margin-bottom: 25px;
            }

            .vwhy-btn {
                width: 168px;
                height: 48px;
                font-size: 12px;
                padding-left: 24px;
            }

            .vwhy-btn-icon {
                width: 38px;
                height: 38px;
            }

            .vwhy-card {
                padding: 24px 12px 22px;
            }

            .vwhy-icon {
                width: 58px;
                height: 58px;
                font-size: 22px;
                margin-bottom: 16px;
            }

            .vwhy-card h3 {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .vwhy-card p {
                font-size: 13px;
                line-height: 1.35;
            }

            .vwhy-oval-light {
                width: 560px;
                height: 360px;
            }

            .vwhy-oval-dark {
                width: 420px;
                height: 270px;
            }
        }

        /* VWHY SESSION END  */

        /* VPICKS SESSION STRT  */
        .vpicks-section {
            background: #fff;
            padding: 85px 0 75px;
            overflow: hidden;
        }

        .vpicks-title {
            text-align: center;
            font-family: Georgia, serif;
            font-size: clamp(40px, 5.4vw, 68px);
            line-height: 1;
            color: #3b3b3b;
            margin-bottom: 66px;
        }

        .vpicks-title em {
            font-style: italic;
            font-weight: 400;
        }

        .vpicks-swiper {
            overflow: visible;
        }

        .vpicks-card {
            height: 480px;
            border-radius: 8px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: flex-end;
            padding: 0 34px 108px;
        }

        .vpicks-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(222, 205, 170, .95) 0%, rgba(222, 205, 170, .45) 34%, rgba(255, 255, 255, 0) 70%);
            opacity: .85;
            transition: .4s ease;
        }

        .vpicks-content {
            position: relative;
            z-index: 2;
            width: 100%;
            transition: .45s ease;
            transform: translateY(70px);
        }

        .vpicks-card:hover .vpicks-content {
            transform: translateY(0);
        }

        .vpicks-content h3 {
            font-family: Georgia, serif;
            font-size: 24px;
            color: #363636;
            margin-bottom: 20px;
            white-space: nowrap;
        }

        .vpicks-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .vpicks-reviews {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #333;
            font-size: 16px;
        }

        .vpicks-reviews span {
            margin-left: 5px;
        }

        .vpicks-price {
            display: flex;
            align-items: center;
            gap: 18px;
            color: #333;
            font-size: 16px;
        }

        .vpicks-price del {
            color: #888;
        }

        .vpicks-price strong {
            font-weight: 500;
        }

        .vpicks-cart-btn {
            position: absolute;
            left: 34px;
            right: 34px;
            bottom: 38px;
            height: 56px;
            border: 0;
            border-radius: 50px;
            background: #3a3a3a;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            z-index: 3;
            transform: translateY(90px);
            opacity: 0;
            transition: .45s ease;
            margin-bottom: 5px;
        }

        .vpicks-card:hover .vpicks-cart-btn {
            transform: translateY(0);
            opacity: 1;
        }

        .vpicks-cart-btn span {
            position: relative;
        }

        .vpicks-cart-btn span::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 1px;
            background: #fff;
            transition: .4s ease;
        }

        .vpicks-cart-btn:hover span::after {
            width: 100%;
        }

        .vpicks-arrows {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-top: 64px;
        }

        .vpicks-arrows button {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 1px solid #3a3a3a;
            background: #fff;
            color: #333;
            font-size: 24px;
            transition: .3s ease;
        }

        .vpicks-arrows button:hover,
        .vpicks-next {
            background: #2b2a2a !important;
            color: #fff !important;
        }

        @media (max-width: 991px) {
            .vpicks-section {
                padding: 65px 0;
            }

            .vpicks-card {
                height: 430px;
            }

            .vpicks-content h3 {
                font-size: 21px;
            }
        }

        @media (max-width: 575px) {
            .vpicks-title {
                font-size: 42px;
                margin-bottom: 35px;
            }

            .vpicks-swiper {
                overflow: hidden;
            }

            .vpicks-card {
                width: 100%;
            }

            .vpicks-content {
                transform: translateY(64px);
            }

            .vpicks-content h3 {
                font-size: 19px;
                white-space: normal;
            }

            .vpicks-bottom {
                align-items: flex-start;
                flex-direction: column;
                gap: 8px;
            }

            .vpicks-reviews,
            .vpicks-price {
                font-size: 14px;
            }

            .vpicks-cart-btn {
                left: 22px;
                right: 22px;
                bottom: 28px;
                height: 50px;
            }

            .vpicks-arrows {
                margin-top: 42px;
            }

            .vpicks-arrows button {
                width: 56px;
                height: 56px;
                font-size: 20px;
            }
        }

        /* VPICKS SESSION END  */

        /* VSKN SESSION STRT  */
        .vskn-section {
            width: 100%;
            background: #F5F5F5;
            overflow: hidden;
        }

        .vskn-main-grid {
            display: grid;
            grid-template-columns: 46.5% 53.5%;
            min-height: 640px;
            border-top: 0px solid #dedede;
            border-bottom: 0px solid #dedede;
        }

        .vskn-left-panel {
            position: relative;
            min-height: 640px;
            overflow: hidden;
        }

        .vskn-left-img {
            position: absolute;
            inset: 0;
            width: 104%;
            height: 100%;
            object-fit: cover;
            object-position: center bottom;
            clip-path: inset(0 100% 0 0);
            transform: translateX(-6%) scale(1.05);
            transition: clip-path 2.4s ease, transform 1.8s ease;
            background: rgba(0, 0, 0, .45);

        }

        .vskn-left-img.vskn-img-active {
            clip-path: inset(0 0 0 0);
            transform: translateX(-2%) scale(1);
        }

        @keyframes vsknImageReveal {
            from {
                clip-path: inset(0 100% 0 0);
                transform: translateX(-6%) scale(1.05);
            }

            to {
                clip-path: inset(0 0 0 0);
                transform: translateX(-2%) scale(1);
            }
        }

        .vskn-left-overlay {
            position: absolute;
            inset: 0;
            background: rgba(92, 47, 47, .34);
            z-index: 1;
        }

        .vskn-left-content {
            position: relative;
            z-index: 2;
            padding: 34px 40px;
            color: #fff;
            max-width: 520px;
        }

        .vskn-left-content h2 {
            font-family: Georgia, serif;
            font-size: clamp(29px, 2.7vw, 34px);
            line-height: 1.1;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .vskn-left-content p {
            max-width: 350px;
            font-size: 15px;
            line-height: 1.35;
            font-weight: 500;
            margin: 0;
        }

        .vskn-pills-wrap {
            position: absolute;
            right: 40px;
            bottom: 40px;
            z-index: 2;
            width: 285px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        .vskn-pills-wrap button {
            height: 39px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, .28);
            background: rgba(255, 255, 255, .14);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            backdrop-filter: blur(12px);
        }



        .vskn-right-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            min-height: 640px;
        }

        .vskn-info-card {
            min-height: 320px;
            background: #f7f7f7;
            border-left: 1px solid #dedede;
            border-bottom: 1px solid #dedede;
            position: relative;
            overflow: hidden;
        }

        .vskn-top-badge {
            position: absolute;
            top: 37px;
            left: 41px;
            width: 136px;
            height: 35px;
            border-radius: 50px;
            border: 1px solid #333;
            color: #333;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4px 0 23px;
            font-size: 12px;
            font-weight: 500;
        }

        .vskn-top-badge i {
            width: 28px;
            height: 28px;
            background: #3a3a3a;
            color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 13px;
        }

        .vskn-benefit-card {
            padding: 112px 40px 40px;
        }

        .vskn-benefit-card h3 {
            font-family: Georgia, serif;
            font-size: clamp(35px, 3vw, 41px);
            line-height: .98;
            color: #3e3e3e;
            margin: 0;
            font-weight: 400;
        }

        .vskn-benefit-card h3 span {
            color: #8c8c8c;
        }

        .vskn-stats-card {
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 70px;
        }

        .vskn-stats-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
        }

        .vskn-stat-box h4 {
            font-family: Georgia, serif;
            font-size: 47px;
            color: #3b3b3b;
            margin: 0 0 12px;
            line-height: 1;
        }

        .vskn-stat-box p {
            font-size: 16px;
            line-height: 1.45;
            color: #444;
            margin: 0;
        }

        .vskn-stat-divider {
            width: 10px;
            height: 98px;
            background:
                radial-gradient(circle, #333 28%, transparent 30%) center/6px 9px repeat-y;
        }

        .vskn-logo-card {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vskn-logo-frame {
            width: 332px;
            height: 140px;
            display: grid;
            place-items: center;
            position: relative;
        }

        .vskn-logo-frame::before,
        .vskn-logo-frame::after {
            display: none;
        }

        .vskn-logo-frame img {
            max-width: 88%;
            height: auto;
            display: block;
        }

        .vskn-join-card {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vskn-circle {
            width: 230px;
            height: 230px;
            border-radius: 50%;
            background: none;
            position: relative;
            overflow: visible;
        }

        .vskn-single-img {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 270px;
            height: 270px;
            object-fit: contain;
            border-radius: 0;
            display: block;
            transform: translate(-50%, -50%);
        }

        .vskn-join-btn {
            position: absolute;
            left: -10px;
            bottom: -10px;
            width: 132px;
            height: 41px;
            background: #fff;
            color: #222;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 8px 0 24px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
            z-index: 3;
        }

        .vskn-join-btn i {
            width: 31px;
            height: 31px;
            background: #3a3a3a;
            color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 13px;
        }

        @media (max-width: 991px) {
            .vskn-main-grid {
                grid-template-columns: 1fr;
            }

            .vskn-left-panel {
                min-height: 580px;
            }

            .vskn-right-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575px) {
            .vskn-left-panel {
                min-height: 540px;
            }

            .vskn-left-content {
                padding: 28px 22px;
            }

            .vskn-left-content h2 {
                font-size: 32px;
            }

            .vskn-left-content p {
                font-size: 14px;
            }

            .vskn-pills-wrap {
                left: 22px;
                right: 22px;
                bottom: 28px;
                width: auto;
            }

            .vskn-right-grid {
                grid-template-columns: 1fr;
            }

            .vskn-info-card {
                min-height: 285px;
                border-left: 0;
            }

            .vskn-benefit-card {
                padding: 100px 28px 35px;
            }

            .vskn-top-badge {
                left: 28px;
            }

            .vskn-benefit-card h3 {
                font-size: 35px;
            }

            .vskn-logo-frame {
                width: 235px;
                height: 108px;
            }

            .vskn-logo-frame img {
                max-width: 88%;
            }

            .vskn-circle {
                width: 190px;
                height: 190px;
            }

            .vskn-single-img {
                width: 230px;
                height: 230px;
            }
        }

        /* VSKN SESSION END  */

        /* VABOUT SCOLL SESSION STRT */
        .vabout-scroll-section {
            height: 210vh;
            background: #fff;
            position: relative;
            padding: 50px 0;
        }

        .vabout-sticky-wrap {
            height: 110vh;
            position: sticky;
            top: 0;
            overflow: visible !important;
            display: flex;
            align-items: center;
            padding: 45px 0;
        }

        .vabout-bg-text {
            position: absolute;
            left: 4%;
            top: 60%;
            transform: translateY(-50%);
            font-family: Georgia, serif;
            font-style: italic;
            font-size: clamp(180px, 28vw, 420px);
            line-height: 1;
            color: rgba(0, 0, 0, .055);
            white-space: nowrap;
            pointer-events: none;
            z-index: 1;
        }

        .vabout-layout {
            height: 100%;
            min-height: 640px;
            display: grid;
            grid-template-columns: 27% 46% 27%;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .vabout-left,
        .vabout-right {
            height: 100%;
            position: relative;
        }

        .vabout-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .vabout-center img {
            width: 100%;
            max-width: 540px;
            height: 650px;
            object-fit: cover;
            object-position: top;
            border-radius: 12px;
            display: block;
        }

        .vabout-small-img {
            width: 240px;
            height: 270px !important;
            border-radius: 7px;
            overflow: hidden;
            position: absolute;
            will-change: transform;
            transform: translate3d(0, 0, 0);
            backface-visibility: hidden;
        }

        .vabout-small-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .vabout-small-img:hover img {
            transform: scale(1.08);
        }

        .vabout-left-img {
            top: 45px;
            left: 0;
        }

        .vabout-right-img {
            right: 0;
            top: 385px;
        }

        .vabout-right p {
            max-width: 280px;
            margin-left: auto;
            margin-top: 48px;
            color: #6a6a6a;
            font-size: 17px;
            line-height: 1.42;
        }

        .vabout-btn {
            position: absolute;
            left: 0;
            bottom: 50px;
            display: inline-flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            color: #3b3b3b;
            font-size: 14px;
            font-weight: 500;
            z-index: 999;
        }

        .vabout-btn-icon {
            width: 80px;
            height: 80px;
            background: #3a3a3a;
            color: #fff;
            border-radius: 50%;
            display: grid;
            place-items: center;
            overflow: hidden;
            position: relative;
            font-size: 24px;
        }

        .vabout-btn-icon i {
            position: absolute;
            transition: .45s ease;
        }

        .vabout-arrow-two {
            transform: translate(-39px, 39px);
        }

        .vabout-btn:hover .vabout-arrow-one {
            transform: translate(37px, -37px);
        }

        .vabout-btn:hover .vabout-arrow-two {
            transform: translate(0, 0);
        }

        @media (max-width: 1399px) {
            .vabout-center img {
                height: 560px;
                max-width: 500px;
            }

            .vabout-small-img {
                width: 220px;
                height: 275px;
            }

            .vabout-right-img {
                top: 370px;
            }
        }

        @media (max-width: 1199px) {
            .vabout-layout {
                grid-template-columns: 25% 50% 25%;
            }

            .vabout-center img {
                height: 520px;
            }

            .vabout-small-img {
                width: 200px;
                height: 255px;
            }

            .vabout-right p {
                font-size: 15px;
                max-width: 245px;
            }

            .vabout-right-img {
                top: 350px;
            }
        }

        @media (max-width: 991px) {
            .vabout-scroll-section {
                height: auto;
            }

            .vabout-sticky-wrap {
                
                position: relative;
                height: auto;
                padding: 70px 0;
                overflow: hidden;
            }

            .vabout-layout {
                min-height: auto;
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .vabout-left,
            .vabout-right {
                height: auto;
                display: grid;
                gap: 24px;
            }

            .vabout-small-img,
            .vabout-btn,
            .vabout-right-img {
                position: relative;
                inset: auto;
                transform: none !important;
            }

            .vabout-small-img {
                width: 100%;
                height: 330px;
            }

            .vabout-center img {
                max-width: 100%;
                height: 520px;
            }

            .vabout-right p {
                max-width: 100%;
                margin: 0;
            }

            .vabout-bg-text {
                font-size: 170px;
                top: 45%;
            }
        }

        @media (max-width: 575px) {
            .vabout-sticky-wrap {
                padding: 50px 0;
            }

            .vabout-center img {
                height: 430px;
            }

            .vabout-small-img {
                height: 260px;
            }

            .vabout-btn-icon {
                width: 64px;
                height: 64px;
                font-size: 20px;
            }

            .vabout-bg-text {
                font-size: 115px;
            }
        }

        /* VABOUT SCOLL SESSION END */

        /* VSHOP TABS SESSIN STRT  */
        .vshop-tabs-section {
            background: #222222;
            padding: 90px 0;
            overflow: hidden;
        }

        .vshop-tabs-head {
            text-align: center;
            margin-bottom: 64px;
        }

        .vshop-tabs-head h2 {
            font-family: Georgia, serif;
            font-size: clamp(45px, 6vw, 72px);
            color: #fff;
            line-height: 1;
            margin-bottom: 34px;
            font-weight: 400;
        }

        .vshop-tabs-head h2 em {
            font-style: italic;
        }

        .vshop-tabs-nav {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }

        .vshop-tab-btn {
            min-width: 136px;
            height: 42px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, .18);
            background: transparent;
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            transition: .3s ease;
        }

        .vshop-tab-btn.active,
        .vshop-tab-btn:hover {
            background: #3b3b3b;
            border-color: #3b3b3b;
        }

        .vshop-products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px 20px;
        }

        .vshop-product-card {
            min-height: 440px;
            background: #fff;
            border-radius: 7px;
            padding: 16px;
            position: relative;
            display: flex;
            flex-direction: column;
            opacity: 1;
            transform: translateY(0);
            transition: opacity .35s ease, transform .35s ease;
        }

        .vshop-product-card.vshop-fade-out {
            opacity: 0;
            transform: translateY(18px);
            pointer-events: none;
        }

        .vshop-product-card.hide {
            display: none;
        }

        .vshop-product-card:hover {
            transform: translateY(-6px);
        }

        .vshop-product-card.vshop-fade-out:hover {
            transform: translateY(18px);
        }

        .vshop-card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            position: relative;
            z-index: 2;
        }

        .vshop-card-top span {
            min-width: 178px;
            height: 40px;
            border-radius: 50px;
            background: #f4f4f4;
            color: #1e2933;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .vshop-card-top button {
            width: 36px;
            height: 36px;
            border: 0;
            border-radius: 50%;
            background: #f6f6f6;
            color: #555;
            display: grid;
            place-items: center;
            transition: .3s ease;
        }

        .vshop-card-top button:hover {
            background: #222;
            color: #fff;
        }

        .vshop-img-box {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 34px 10px 20px;
            overflow: hidden;
        }

        .vshop-img-box img {
            max-width: 100%;
            max-height: 350px;
            object-fit: contain;
            transition: .45s ease;
        }

        .vshop-product-card:hover .vshop-img-box img {
            transform: scale(1.08);
        }

        .vshop-card-bottom {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 12px;
            margin-top: auto;
        }

        .vshop-card-bottom h4 {
            color: #3d3d3d;
            font-size: 15px;
            line-height: 1.35;
            margin: 0;
            font-weight: 500;
        }

        .vshop-card-bottom p {
            margin: 0;
            color: #3d3d3d;
            font-size: 15px;
            white-space: nowrap;
        }

        @media (max-width: 1199px) {
            .vshop-products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .vshop-products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .vshop-tabs-section {
                padding: 70px 0;
            }
        }

        @media (max-width: 575px) {
            .vshop-tabs-head {
                margin-bottom: 42px;
            }

            .vshop-tabs-head h2 {
                font-size: 42px;
            }

            .vshop-products-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .vshop-product-card {
                min-height: 400px;
            }

            .vshop-card-top span {
                min-width: 165px;
                font-size: 14px;
            }

            .vshop-img-box img {
                max-height: 240px;
            }
        }

        /* VSHOP TABS SESSIN END  */

        /* VLOVE SESSION STRT  */
        .vlove-section {
            width: 100%;
            background: #fff;
            padding: 50px 0 66px;
            overflow: hidden;
        }

        .vlove-title {
            text-align: center;
            font-family: Georgia, serif;
            font-size: clamp(52px, 6vw, 76px);
            line-height: .96;
            color: #3b3b3b;
            margin: 0 0 72px;
            font-weight: 400;
        }

        .vlove-title em {
            font-style: italic;
            font-weight: 400;
        }

        .vlove-slider-wrap {
            position: relative;
        }

        .vlove-swiper {
            overflow: hidden;
            padding: 0 16px;
        }

        .vlove-card {
            background: #f4f4f4;
            border-radius: 7px;
            padding: 24px 8px 30px;
            min-height: 371px;
        }

        .vlove-user {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 0 16px 24px;
        }

        .vlove-user img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
        }

        .vlove-user h3 {
            font-family: Georgia, serif;
            font-size: 24px;
            color: #111;
            margin: 0 0 6px;
            font-weight: 400;
        }

        .vlove-user span {
            display: block;
            color: #777;
            font-size: 17px;
        }

        .vlove-img-box {
            width: 100%;
            height: 280px;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 22px;
        }

        .vlove-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .55s ease;
        }

        .vlove-card:hover .vlove-img-box img {
            transform: scale(1.06);
        }

        .vlove-stars {
            display: flex;
            align-items: center;
            gap: 3px;
            color: #333;
            font-size: 16px;
            padding: 0 16px;
            margin-bottom: 12px;
        }

        .vlove-card p {
            padding: 0 16px;
            margin: 0;
            color: #111;
            font-size: 17px;
            line-height: 1.45;
        }

        .vlove-prev,
        .vlove-next {
            position: absolute;
            top: 46%;
            transform: translateY(-50%);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            border: 1px solid #333;
            z-index: 5;
            display: grid;
            place-items: center;
            font-size: 23px;
            transition: .3s ease;
        }

        .vlove-prev {
            left: -16px;
            background: #fff;
            color: #333;
        }

        .vlove-next {
            right: -16px;
            background: #000;
            color: #fff;
        }

        .vlove-prev:hover,
        .vlove-next:hover {
            transform: translateY(-50%) scale(1.08);
        }

        @media (max-width: 991px) {
            .vlove-title {
                margin-bottom: 45px;
            }

            .vlove-img-box {
                height: 250px;
            }

            .vlove-prev {
                left: 0;
            }

            .vlove-next {
                right: 0;
            }
        }

        @media (max-width: 575px) {
            .vlove-section {
                padding-bottom: 50px;
            }

            .vlove-title {
                font-size: 42px;
                margin-bottom: 35px;
            }


            .vlove-swiper {
                padding: 0;
            }

            .vlove-card {
                width: 100%;
            }

            .vlove-user img {
                width: 58px;
                height: 58px;
            }

            .vlove-user h3 {
                font-size: 21px;
            }

            .vlove-user span {
                font-size: 15px;
            }

            .vlove-img-box {
                height: 230px;
            }

            .vlove-card p {
                font-size: 15px;
            }

            .vlove-prev,
            .vlove-next {
                width: 52px;
                height: 52px;
                font-size: 19px;
                top: 50%;
            }
        }

        /* VLOVE SESSION END  */

        /* VBLOG TRENDS SESSION STRT  */
        .vblog-trends-section {
            background: #fff;
            padding: 88px 0 72px;
            overflow: hidden;
        }

        .vblog-trends-title {
            text-align: center;
            font-family: Georgia, serif;
            font-size: clamp(50px, 6vw, 74px);
            line-height: 1;
            color: #3b3b3b;
            margin-bottom: 68px;
        }

        .vblog-trends-title em {
            font-style: italic;
            font-weight: 400;
        }

        .vblog-trends-grid {
            display: grid;
            grid-template-columns: 1.04fr 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .vblog-card {
            background: #f4f4f4;
            border-radius: 7px;
            overflow: hidden;
        }

        .vblog-card-large {
            min-height: 483px;
        }

        .vblog-card-small {
            min-height: 423px;
        }

        .vblog-img-wrap {
            width: 100%;
            height: 240px;
            overflow: hidden;
            clip-path: inset(0 100% 0 0);
            transition: clip-path 1.3s ease;
        }

        .vblog-card-large .vblog-img-wrap {
            height: 210px;
        }

        .vblog-card-small .vblog-img-wrap {
            height: 240px;
        }

        .vblog-card.vblog-img-active .vblog-img-wrap {
            clip-path: inset(0 0 0 0);
        }

        .vblog-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1);
            transition: transform .65s ease;
        }

        .vblog-card:hover .vblog-img {
            transform: scale(1.08);
        }

        .vblog-content {
            padding: 34px 24px 33px;
        }

        .vblog-card-large .vblog-content {
            padding: 34px 24px 34px;
        }

        .vblog-card-small .vblog-content {
            padding: 34px 24px 34px;
        }

        .vblog-content h3 {
            font-family: Georgia, serif;
            font-size: 25px;
            line-height: 1.24;
            color: #3b3b3b;
            margin: 0 0 19px;
            font-weight: 400;
        }

        .vblog-card-small .vblog-content h3 {
            margin-bottom: 39px;
        }

        .vblog-content p {
            font-size: 17px;
            line-height: 1.42;
            color: #666;
            margin: 0 0 34px;
        }

        .vblog-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            color: #414141;
            font-size: 16px;
        }

        .vblog-meta a {
            color: #414141;
            text-decoration: underline;
            text-underline-offset: 3px;
            font-size: 16px;
            white-space: nowrap;
        }

        .vblog-btn-wrap {
            display: flex;
            justify-content: center;
            margin-top: -30px;
        }

        .vblog-shop-btn {
            width: 196px;
            height: 57px;
            background: #3a3a3a;
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 7px 0 34px;
            margin-left: 350px;
            font-size: 14px;
            font-weight: 700;
        }

        .vblog-shop-text {
            position: relative;
        }

        .vblog-shop-text::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 1px;
            background: #fff;
            transition: .4s ease;
        }

        .vblog-shop-btn:hover .vblog-shop-text::after {
            width: 100%;
        }

        .vblog-shop-icon {
            width: 44px;
            height: 44px;
            background: #fff;
            color: #333;
            border-radius: 50%;
            display: grid;
            place-items: center;
            overflow: hidden;
            position: relative;
        }

        .vblog-shop-icon i {
            position: absolute;
            transition: .45s ease;
        }

        .vblog-arrow-two {
            transform: translate(-24px, 24px);
        }

        .vblog-shop-btn:hover .vblog-arrow-one {
            transform: translate(24px, -24px);
        }

        .vblog-shop-btn:hover .vblog-arrow-two {
            transform: translate(0, 0);
        }

        @media (max-width: 1199px) {
            .vblog-trends-grid {
                gap: 24px;
            }

            .vblog-content h3 {
                font-size: 22px;
            }
        }

        @media (max-width: 991px) {
            .vblog-trends-grid {
                grid-template-columns: 1fr 1fr;
            }

            .vblog-card-large {
                grid-column: span 2;
            }

            .vblog-card-large,
            .vblog-card-small {
                min-height: auto;
            }

            .vblog-card-small .vblog-img-wrap,
            .vblog-card-large .vblog-img-wrap {
                height: 220px;
            }

            .vblog-shop-btn {
                margin-left: 0px;
                margin-top: 50px;
            }
        }

        @media (max-width: 575px) {
            .vblog-trends-section {
                padding: 60px 0;
            }

            .vblog-trends-title {
                font-size: 42px;
                margin-bottom: 35px;
            }

            .vblog-shop-btn {
                margin-left: 0px;
                margin-top: 0px;


            }

            .vblog-trends-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .vblog-card-large {
                grid-column: auto;
            }

            .vblog-card-small .vblog-img-wrap,
            .vblog-card-large .vblog-img-wrap {
                height: 205px;
            }

            .vblog-content {
                padding: 26px 22px 28px;
            }

            .vblog-content h3 {
                font-size: 22px;
            }

            .vblog-content p {
                font-size: 15px;
            }

            .vblog-meta {
                font-size: 14px;
            }

            .vblog-meta a {
                font-size: 14px;
            }

            .vblog-btn-wrap {
                margin-top: 32px;
            }
        }

        /* VBLOG TRENDS SESSION END  */

        /* VFAMILY SESSION STRT  */
        .vfamily-section {
            width: 100%;
            background: #fff;
            padding: 16px 0 36px;
            overflow: hidden;
        }

        .vfamily-wrap {
            min-height: 700px;
            border-radius: 7px;
            position: relative;
            overflow: hidden;
        }

        .vfamily-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .vfamily-card {
            position: absolute;
            left: 100px;
            top: 100px;
            width: 580px;
            min-height: 350px;
            border-radius: 28px;
            background: rgba(235, 213, 118, .58);
            border: 1px solid rgba(255, 255, 255, .25);
            backdrop-filter: blur(2px);
            padding: 54px 48px 34px;
        }

        .vfamily-card h2 {
            font-family: Georgia, serif;
            font-size: clamp(40px, 4.8vw, 62px);
            line-height: .98;
            color: #313131;
            margin: 0 0 28px;
            font-weight: 400;
        }

        .vfamily-card p {
            max-width: 430px;
            font-size: 16px;
            line-height: 1.5;
            color: #1b1b1b;
            margin: 0 0 34px;
        }

        .vfamily-form {
            width: 100%;
            height: 56px;
            background: #fff;
            border-radius: 50px;
            display: flex;
            align-items: center;
            padding: 0 7px 0 34px;
            margin-bottom: 40px;
        }

        .vfamily-form input {
            width: 100%;
            border: 0;
            outline: 0;
            background: transparent;
            font-size: 14px;
            color: #303030;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .vfamily-form input::placeholder {
            color: #9b9b9b;
            opacity: 1;
        }

        .vfamily-form button {
            width: 45px;
            height: 45px;
            border: 0;
            border-radius: 50%;
            background: #3b3b3b;
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 17px;
            flex: 0 0 auto;
            transition: .35s ease;
        }

        .vfamily-form button:hover {
            transform: rotate(45deg);
        }

        .vfamily-bottom {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .vfamily-avatar-img {
            width: 120px;
            height: 48px;
            object-fit: contain;
            flex: 0 0 auto;
        }

        .vfamily-rating {
            /* display: flex; */
            align-items: center;
            gap: 10px;
            color: #363636;
            font-size: 16px;
            font-weight: 600;
        }

        .vfamily-stars {
            /* display: flex; */
            gap: 3px;
            color: #333;
            font-size: 18px;
        }

        @media (max-width: 1199px) {
            .vfamily-card {
                left: 60px;
                width: 530px;
            }
        }

        @media (max-width: 991px) {
            .vfamily-wrap {
                min-height: 560px;
            }

            .vfamily-card {
                left: 35px;
                right: 35px;
                top: 70px;
                width: auto;
            }
        }

        @media (max-width: 575px) {
            .vfamily-section {
                padding: 18px 0 40px;
            }

            .vfamily-wrap {
                min-height: 620px;
            }

            .vfamily-card {
                left: 15px;
                right: 15px;
                top: 60px;
                border-radius: 28px;
                padding: 38px 24px 30px;
            }

            .vfamily-card h2 {
                font-size: 44px;
            }

            .vfamily-card p {
                font-size: 14px;
                margin-bottom: 28px;
            }

            .vfamily-form {
                height: 52px;
                padding-left: 22px;
                margin-bottom: 32px;
            }

            .vfamily-bottom {
                align-items: flex-start;
                flex-direction: column;
                gap: 12px;
            }

            .vfamily-rating {
                flex-wrap: wrap;
                font-size: 14px;
            }
        }

        /* VFAMILY SESSION END  */

        /* FOOTER SESSION STRT */
        .vfooter-section {
            width: 100%;
            background: #ffff;
            padding: 90px 0 44px;
            color: #424242;
            /* border-top: 1px solid #eeeeee; */
        }

        .vfooter-main {
            display: grid;
            grid-template-columns: 2.1fr .8fr .85fr .85fr .95fr;
            gap: 52px;
            padding-bottom: 82px;
        }

        .vfooter-logo {
            display: inline-block;
            font-family: Georgia, serif;
            font-style: italic;
            font-size: 29px;
            font-weight: 700;
            color: #3d3d3d;
            text-decoration: none;
            margin-bottom: 12px;
        }

        .vfooter-brand p {
            font-size: 16px;
            line-height: 1.45;
            color: #555454;
            margin: 0 0 34px;
        }

        .vfooter-socials {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .vfooter-socials a {
            width: 44px;
            height: 44px;
            border: 1px solid #303030;
            border-radius: 50%;
            color: #242424;
            display: grid;
            place-items: center;
            text-decoration: none;
            font-size: 19px;
            transition: .35s ease;
        }

        .vfooter-socials a:hover {
            background: #303030;
            color: #fff;
            transform: translateY(-4px);
        }

        .vfooter-col h4,
        .vfooter-contact h4 {
            font-size: 16px;
            font-weight: 500;
            color: #5a5959;
            margin: 0 0 26px;
        }

        .vfooter-col ul,
        .vfooter-contact ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .vfooter-col li,
        .vfooter-contact li {
            margin-bottom: 17px;
        }

        .vfooter-col a,
        .vfooter-contact a,
        .vfooter-bottom-links a,
        .vfooter-bottom p a {
            color: #4b4b4b;
            font-size: 17px;
            text-decoration: none;
            position: relative;
            display: inline-block;
            transition: .3s ease;
        }

        .vfooter-col a::after,
        .vfooter-contact a::after,
        .vfooter-bottom-links a::after,
        .vfooter-bottom p a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 1px;
            background: #111;
            transition: .35s ease;
        }

        .vfooter-col a:hover,
        .vfooter-contact a:hover,
        .vfooter-bottom-links a:hover,
        .vfooter-bottom p a:hover {
            color: #111;
        }

        .vfooter-col a:hover::after,
        .vfooter-contact a:hover::after,
        .vfooter-bottom-links a:hover::after,
        .vfooter-bottom p a:hover::after {
            width: 100%;
        }

        .vfooter-bottom {
            border-top: 1px solid #d8d8d8;
            padding-top: 28px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .vfooter-bottom p {
            margin: 0;
            color: #7c7c7c;
            font-size: 16px;
        }

        .vfooter-bottom p a {
            color: #111;
            font-size: 16px;
            font-weight: 500;
        }

        .vfooter-bottom-links {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .vfooter-bottom-links a {
            color: #302f2f;
            font-size: 16px;
        }

        @media (max-width: 1199px) {
            .vfooter-main {
                grid-template-columns: 1.6fr 1fr 1fr;
                gap: 45px;
            }
        }

        @media (max-width: 767px) {
            .vfooter-section {
                padding: 70px 0 32px;
            }

            .vfooter-main {
                grid-template-columns: 1fr 1fr;
                gap: 34px 28px;
                padding-bottom: 55px;
            }

            .vfooter-brand {
                grid-column: span 2;
            }

            .vfooter-contact {
                grid-column: span 2;
            }

            .vfooter-pages-extra h4 {
                display: none;
            }

            .vfooter-bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .vfooter-bottom-links {
                gap: 20px;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 480px) {
            .vfooter-main {
                grid-template-columns: 1fr;
            }

            .vfooter-brand,
            .vfooter-contact {
                grid-column: auto;
            }

            .vfooter-brand p {
                font-size: 15px;
            }

            .vfooter-col a,
            .vfooter-contact a {
                font-size: 16px;
            }

            .vfooter-socials a {
                width: 41px;
                height: 41px;
            }
        }

        /* FOOTER SESSION END  */