/* Table of Contents:
1. Import Statements
2. Keyframes and Property Animations    
3. Custom Properties
4. Global Styles
5. Typography Styles
6. Heading and Subheadings
7. Form and Inputs
8. Maps Elements
9. Header and Navbar
10. Section and Container
11. Background and Setting Color
12. Swiper Setting
13. Button and Links
14. Overlay
15. Utility Classes
16. Social and Contact Setting
17. Breadcrumb
18. Spesific Media Queries
19. Card Setting
20. Progress and Rating 
21. Accordion
*/

/* ---------------------------- */
/* Import Statements            */
/* ---------------------------- */
@import url('../css/vendor/');
@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');
@import url('../css/vendor/rtmicons.css');
@import url('../css/vendor/just-another-hand/just-another-hand.css');
@import url('../css/vendor/inter/stylesheet.css');

/* ---------------------------- */
/* Keyframes and Property Animations            */
/* ---------------------------- */
@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to {
        --progress: var(--value)
    }
}

@keyframes background_animation {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }

    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

/* ---------------------------- */
/*  Custom Properties            */
/* ---------------------------- */
:root {
    --primary: #FBFBFB;
    --secondary: #272727;
    --text-color: #272727;
    --text-color-2: #262626;
    --accent-color: #262626;
    --accent-color-2: #FFDADA;
    --accent-color-3: #5A5A5A;
    --accent-color-4: #FFF0D0;
    --accent-color-5: #D0F3FF;
    --accent-color-6: #F1F1F1;
    --accent-color-7: #C4DEE8;
    --accent-color-8: #F3E5C5;
    --accent-color-9: #A8A8A8;
    --accent-color-10: #F2CCCC;
    --font-1: "Inter", sans-serif;
    --font-2: "Just Another Hand", sans-serif;
}


/* ---------------------------- */
/* Global Styles                */
/* ---------------------------- */
body {
    font-family: var(--font-1);
    color: var(--text-color);
    background-color: var(--primary);
}


/* ---------------------------- */
/* Typography                   */
/* ---------------------------- */
h1 {
    font-size: 62px;
    font-weight: bold;
}

h2 {
    font-size: 56px;
    font-weight: bold;
}

h3 {
    font-size: 48px;
    font-weight: 600;
}

h4 {
    font-size: 29px;
    font-weight: 500;
}

h5 {
    font-size: 22px;
    font-weight: 500;
}

h6 {
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-2);
    color: var(--accent-color);
}

/*
 * Scroll animation helpers
 *
 * Elements marked with the `scrollanimation` and `animated` classes
 * should not begin animating until they enter the viewport. To
 * accomplish this we pause their CSS animations and hide them by
 * default. When the IntersectionObserver in scroll‑animation.js
 * detects that an element is visible it applies the `animate-visible`
 * class which resumes the animation and reveals the element. See
 * js/scroll-animation.js for implementation.
 */
.scrollanimation.animated {
  opacity: 0;
  animation-play-state: paused;
}

.scrollanimation.animated.animate-visible {
  opacity: 1;
  animation-play-state: running;
}

button,
a {
    font-size: 18px;
    font-family: var(--font-1);
}

p {
    font-size: 16px;
    font-family: var(--font-1);
    color: var(--accent-color-3);
}

/* ul {
    list-style: none;
} */

.list-circle {
    list-style: disc var(--accent-color);
}

li {
    font-size: 16px;
    color: var(--accent-color-3);
}

img {
    object-fit: cover;
}

.text-accent {
    background: linear-gradient(90deg, #01C7F3 0%, #003642 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-text {
    font-size: 64px;
    font-weight: bolder;
}

.price-text2 {
    font-size: 40px;
    font-weight: bolder;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
}

.small-text {
    font-size: 14px;
}

.brush1 {
    position: relative;
    display: inline-block;
    padding: 5px 0px;
}

.brush1::before {
    content: "";
    background: url('../image/brush1.png') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0;
    left: -5%;
    z-index: -1;
    opacity: 0.8;
}

.brush2 {
    position: relative;
    display: inline-block;
    padding: 5px 0px;
}

.brush2::before {
    content: "";
    background: url('../image/brush2.png') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0;
    left: -5%;
    z-index: -1;
    opacity: 0.8;
}

.brush3 {
    position: relative;
    display: inline-block;
    padding: 5px 0px;
}

.brush3::before {
    content: "";
    background: url('../image/brush3.png') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0;
    left: -5%;
    z-index: -1;
    opacity: 0.8;
}

.brush4 {
    position: relative;
    display: inline-block;
    padding: 5px 0px;
}

.brush4::before {
    content: "";
    background: url('../image/brush4.png') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0;
    left: -5%;
    z-index: -1;
    opacity: 0.8;
}

.brush5 {
    position: relative;
    display: inline-block;
    padding: 5px 0px;
}

.brush5::before {
    content: "";
    background: url('../image/brush5.png') no-repeat center;
    background-size: contain;
    position: absolute;
    width: 110%;
    height: 100%;
    top: 0;
    left: -5%;
    z-index: -1;
    opacity: 0.8;
}

/* ---------------------------- */
/* Headings and Subheadings      */
/* ---------------------------- */
.banner-heading {
    font-size: 5.5rem;
}

.sub-heading {
    color: var(--accent-color);
}

.text-color {
    color: var(--text-color);
}

.text-color-2 {
    color: var(--text-color-2);
}

.p-banner {
    color: var(--primary);
}

/* ---------------------------- */
/* Forms and Inputs             */
/* ---------------------------- */
.form-control {
    padding: 15px 24px;
    border: none;
}

.form-label {
    font-size: 24px;
}

.form textarea {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    color: var(--text-color-2);
    outline: none;
    font-family: var(--font-1);
}

.form input,
.form select {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    color: var(--accent-color-3);
    outline: none;
    font-family: var(--font-1);
}


.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: none;
    border: solid 1px var(--accent-color);
    background-color: var(--accent-color-2);
    color: var(--text-color);
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--text-color);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--text-color);
    font-family: var(--font-1);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color);
    font-family: var(--font-1);
}

.form option {
    background-color: var(--primary);
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-xl" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 1rem;
    text-decoration: none;
    transition: all 0.5s;
    background-color: var(--accent-color);
    border-radius: 100px;
}


.submit_form:hover {
    background-color: transparent;
    color: var(--accent-color);
}


.submit_appointment {
    padding-inline: 3rem;
    padding-block: 0.7rem;
    text-decoration: none;
}


/* ---------------------------- */
/* Map Elements       */
/* ---------------------------- */
.maps {
    width: 100%;
    height: 600px;
    transition: filter 0.5s;
    display: block;
}


/* ---------------------------- */
/* Header and Navbar       */
/* ---------------------------- */
#header {
    transition: all 0.5s ease;
}

.logo-container {
    max-width: 200px;
}

.logo-partner {
    filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg);
    transition-duration: 0.5s;
}

.logo-partner:hover {
    filter: none;
}

.offcanvas {
    background-color: var(--primary);
}

.offcanvas-header {
    color: var(--text-color);
}

.navbar-nav .nav-link:focus {
    color: var(--accent-color);
    text-align: center;
}

.navbar-nav .nav-link.show {
    color: var(--accent-color);
}

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-1);
    color: var(--text-color);
    text-align: center;
}

.nav-link:hover {
    color: var(--accent-color);
    text-align: center;
}

.nav-link.active {
    color: var(--accent-color) !important;
    text-align: center;
    /* border-bottom: 2px solid var(--accent-color); */
}

.navbar-toggler {
    border: none;
    color: var(--secondary);
}

.navbar-toggler:focus {
    box-shadow: none;
    background-color: transparent;
    color: var(--accent-color-2);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs .nav-link {
    background-color: transparent;
    color: var(--accent-color);
    border: none;
    position: relative;
}

.nav-tabs .nav-link:hover {
    border: none;
    color: white;
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
}

.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    padding: 0;
    width: 200px;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    padding-block: 0.75rem;
    color: var(--text-color);
    font-family: var(--font-1);
    font-size: 0.95rem;
    font-weight: 400;
    padding-inline: 0.75rem;
    text-align: center;
    background-color: var(--background-color);
}

.dropdown-item.active {
    color: var(--primary);
    background-color: var(--accent-color);
}

.dropdown-item:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.dropdown-item:focus {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Section and Container       */
/* ---------------------------- */
.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
}


/* ---------------------------- */
/* Background and Setting Color      */
/* ---------------------------- */
.bg-accent-primary {
    background-color: var(--primary);
}

.bg-accent-secondary {
    background-color: var(--secondary);
}

.bg-accent-color {
    background-color: var(--accent-color);
}

.bg-accent-color-2 {
    background-color: var(--accent-color-2);
}

.bg-accent-color-3 {
    background-color: var(--accent-color-3);
}

.bg-accent-color-4 {
    background-color: var(--accent-color-4);
}

.bg-accent-color-5 {
    background-color: var(--accent-color-5);
}

.bg-accent-color-6 {
    background-color: var(--accent-color-6);
}

.bg-accent-color-7 {
    background-color: var(--accent-color-7);
}

.bg-accent-color-8 {
    background-color: var(--accent-color-8);
}

.bg-accent-color-9 {
    background-color: var(--accent-color-9);
}

.bg-accent-color-9 {
    background-color: var(--accent-color-10);
}

.bg-accent {
    background-color: var(--primary);

}

.bg-text-color {
    background-color: var(--text-color);
}

.bg-text-color-2 {
    background-color: var(--text-color-2);
}

.bg-accent-color-hover:hover {
    background-color: var(--accent-color);
    color: white;
}

.bg-dark-transparent {
    background-color: #232323b7;
}

.accent-color-primary {
    color: var(--primary);
}

.accent-color {
    color: var(--accent-color);
}

.accent-color-2 {
    color: var(--accent-color-2);
}

.accent-color-3 {
    color: var(--accent-color-3);
}

.accent-color-4 {
    color: var(--accent-color-4);
}

.accent {
    color: var(--background-color);
}

.border-accent {
    border-color: var(--accent-color-9) !important;
}

.border-accent-2 {
    border-color: var(--accent-color-8) !important;
}

.border-accent-2:hover {
    border-color: var(--accent-color-10) !important;
}

.border-accent-3 {
    border: 1px solid rgba(207, 171, 130, 0.2);
}

.border-text-color {
    border-color: var(--text-color) !important;
}

.border-testimonial {
    border-right: 5px solid var(--accent-color-2);
}

.border-bottom-hover:hover {
    border-bottom: 2px solid var(--accent-color);
}

.border-accent-color {
    border: 1px solid var(--accent-color);
}

.outline {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--accent-color);
}

.text-gray {
    color: grey !important;
}

/* ---------------------------- */
/* Swiper Setting              */
/* ---------------------------- */
.text-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.text-marquee-content {
    display: inline-block;
    animation: text-marquee 70s linear infinite;
    font-size: 100px;
    padding-right: 50%;
}

@keyframes text-marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

.marquee-container {
    overflow: hidden;
    /* white-space: nowrap; */
    width: 100%;
    display: flex;
    flex-direction: row;
    --gap: 1rem;
    --speed: 20;
    /* gap: var(--gap); */
}

.marquee {
    animation: marquee calc(500s / var(--speed)) infinite linear;
}

.reverse .marquee {
    animation-direction: reverse;
}

.marquee-content {
    display: inline-flex;
}

.marquee-item:hover img {
    filter: var(--accent-color);
}

.marquee-item {
    text-wrap: nowrap;
    padding-inline: var(--gap);
    margin-right: 1rem;
    width: max-content;
    color: var(--primary);
}

.marquee-item-2 {
    text-wrap: nowrap;
    padding-inline: var(--gap);
    margin-right: 1rem;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.service-scroll {
    height: 610px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 3rem;
}

/* width */
.service-scroll::-webkit-scrollbar {
    width: 6px;
}

/* Track */
.service-scroll::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 10px;
}

/* Handle */
.service-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

/* Handle on hover */
.service-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-2);
}

.swiper-slide {
    padding: 0.5rem;
}

.swiperTestimonials {
    overflow: visible;
}

.swiper-pagination {
    margin-block: 1rem;
    position: relative;
}


.swiper-pagination-bullet {
    background: var(--accent-color-3);
}

.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.swiperImage {
    padding-bottom: 8rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    top: 35rem;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    border: 1px solid var(--text-color);
    background-color: var(--secondary);
    color: var(--primary);
}

.swiper-button-next {
    right: 95%;
    transform: translateY(20px);
}

.swiper-button-prev {
    left: 0%;
    transform: translateY(20px);
}

.custom-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-scrollbar {
    width: 6px;
    position: absolute;
    right: 10px;
    top: 0px;
    margin-top: 150px;
    bottom: 0;
    background: #e0e0e0;
    border-radius: 10px;
    z-index: 9999;
}

.swiper-scrollbar.swiper-scrollbar-vertical {
    height: 300px;
}

.custom-scrollbar .swiper-scrollbar-drag {
    background: #ff9800;
    border-radius: 10px;
}

/* ---------------------------- */
/* Buttons & Links              */
/* ---------------------------- */
button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

button:hover {
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.w-max-content {
    width: max-content;
}

.read-more {
    font-family: var(--font-1);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.5s;
    color: var(--text-color);
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more img {
    width: 24px;
    height: 24px;
}

.read-more.blog {
    color: var(--text-color);
    transition: all 0.5s;
}

.certified-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: solid 1px var(--accent-color-9);
    padding: 30px 0;
}

.certified-name img {
    width: 180px;
    height: 86px;
}


.tags {
    padding: 3px 6px;
    font-family: var(--font-2);
    color: var(--text-color);
    background-color: var(--accent-color-3);
}

.tags.active {
    color: var(--primary);
    background-color: var(--accent-color);
}

.btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-1);
    font-weight: 500;
    position: relative;
	display: inline-block;
    pointer-events: auto;
	cursor: pointer;
    padding: 8px 8px 8px 16px;
}

.btn::before,
.btn::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.btn-close {
    color: var(--text-color);
}

.btn-close:hover {
    color: var(--text-color);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--primary);
    transition: all 0.5s;
    border: 1px solid transparent;
    overflow: hidden;
}

.btn-accent:hover {
    color: var(--primary);
}


.btn-accent:hover i{
    color: var(--accent-color);
}

.btn-accent span {
	display: block;
	position: relative;
	z-index: 10;
}

.btn-accent:hover i {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent i {
	display: block;
	position: relative;
	z-index: 10;
}

.btn-accent:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
    color: var(--primary);
}

.btn-accent-2 {
    color: var(--accent-color);
    transition: all 0.5s;
    overflow: hidden;
    border: 1px solid var(--accent-color);
}

.btn-accent-2:hover {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-accent-2:hover i{
    color: var(--primary);
}

.btn-accent-2 span {
	display: block;
	position: relative;
	z-index: 10;
}

.btn-accent-2:hover i {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent-2 i {
	display: block;
	position: relative;
	z-index: 10;
}

.btn-accent-2:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent-3 {
    color: var(--accent-color);
    transition: all 0.5s;
    overflow: hidden;
    border: 1px solid var(--accent-color);
    padding: 4px 24px;
}

.btn-accent-3:hover {
    color: var(--primary);
    background-color: var(--accent-color);
}


.btn-accent-3:hover i{
    color: var(--primary);
}

.btn-accent-3 span {
	display: block;
	position: relative;
	z-index: 10;
}

.btn-accent-3:hover i {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent-3 i {
	display: block;
	position: relative;
	z-index: 10;
}

.btn-accent-3:hover span {
    color: var(--primary);
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
	to {
		transform: translate3d(0,-105%,0) scale3d(1,2,1);
		opacity: 0;
	}
}

@keyframes MoveScaleUpEnd {
	from {
		transform: translate3d(0,100%,0) scale3d(1,2,1);
		opacity: 0;
	}
	to {
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}

.btn-accent::before {
	content: '';
	background: var(--accent-color);
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	transform: translate3d(0,68%,0) scale3d(0,0,0);
}

.btn-accent:hover::before {
	transform: translate3d(0,0,0) scale3d(1,1,1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-accent::after {
	content: '';
	background: var(--accent-color);
	transform: translate3d(0,-100%,0);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-accent:hover::after {
	transform: translate3d(0,0,0);
	transition-duration: 0.05s;
	transition-delay: 0.4s;
	transition-timing-function: linear;
}

.btn-accent.accent:hover {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-accent-outline {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    overflow: hidden;
}

.btn-accent-outline:hover {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-accent-outline span {
	display: block;
	position: relative;
	z-index: 10;
}

.btn-accent-outline:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

.btn-accent-underline::before {
    transform-origin: 0% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.btn-accent-underline:hover::before {
    transform: scale3d(1, 1, 1);
}

.btn-accent-underline::after {
    content: '';
    top: calc(100% + 4px);
    transition: transform 0.3s;
    transform-origin: 100% 50%;
}

.btn-accent-underline::before,
.btn-accent-underline::after {
    position: absolute;
    width: 100%;
    height: 1px;
    background: currentColor;
    top: 100%;
    left: 0;
    pointer-events: none;
    
}

.btn-accent-underline:hover::after {
    transform: scale3d(0, 1, 1);
}

.btn-accent-underline:hover {
    color: var(--text-color);
}

.btn-accent-underline {
    background-color: transparent;
    border-bottom: 1px solid var(--accent-color);
    color: var(--accent-color);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.btn-play {
  cursor: pointer;
  border: none;
  background: var(--accent-color-4);
  color: #fff;
  width: 137px;
  height: 137px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  transition:
    background 300ms,
    transform 200ms;
  font-weight: normal;
  position: absolute;
  z-index: 3;
  bottom: -2rem;
  left: -2rem;
}

.btn-play__text {
  position: absolute;
  inset: 0;
  animation: text-rotation 8s linear infinite;
  margin: 0.25rem;

}

.btn-play__text > span {
  position: absolute;
  transform: rotate(calc(8.6deg * var(--index)));
  inset: 3px;
  color: var(--text-color);
  font-size: 12px;
}

.btn-play__circle {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: var(--accent-color-4);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-play__icon--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.btn-play:hover {
  background: var(--accent-color-4);
  transform: scale(1.05);
}

.btn-play:hover .btn-play__icon {
  color: var(--accent-color);
}

.btn-play:hover .btn-play__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.btn-play:hover .btn-play__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}

.btn-toggler-accent {
    background-color: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    aspect-ratio: 1/1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}


.btn-toggler-accent:hover {
    background-color: var(--text-color);
    color: var(--primary);
}

.btn-white-outline {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
    border-width: 1px;
}

.btn-white-outline-hover:hover {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-white-outline:hover {
    background-color: white;
    color: var(--primary);
}

.partner {
    display: flex;
    justify-content: center;
    padding: 16px 24px;
    border: 1px solid transparent;
}

.partner:hover {
    border: 1px solid var(--accent-color);
}

.partner svg {
    fill: var(--accent-color);
}

.partner:hover svg {
    fill: var(--accent-color);
}

.image-footer .social-item {
    color: var(--primary);
    background-color: var(--accent-color);
}

.image-footer:hover .image-footer-blur {
    background: rgba(24, 21, 24, 0.3);
    backdrop-filter: blur(2px);
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.image-footer {
    position: relative;
    width: max-content;
}

.image-footer .image-zoom {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform-origin: bottom;
    transition: all 0.5s ease;
}

.image-footer:hover .image-zoom {
    opacity: 1;
}

.float-button {
    margin-top: -5rem;
}

.float-img {
    position: absolute;
    bottom: 0;
    left:10rem;
}

.float-img-2 {
    position: absolute;
    bottom: 0;
    right: 10rem;
}

.float-img-3 {
    position: absolute;
    bottom: 7rem;
    left: -5rem;
}

.float-team {
    position: absolute;
    bottom: 0;
    left: 6rem;
}

.float-img.testi {
    left: 0;
}

.card-track:hover .track-blur {
    opacity: 1;
    transform: translate(1rem, -1rem);
}

.card-track .track-blur {
    opacity: 0;

}

.track-blur {
    transition: all 0.5s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.card-track {
    transition: all 0.5s ease;
}

.card-read-more {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 12px 0 12px 24px;
    border-top-left-radius: 30px;
    background-color: var(--primary);
}

.card

.card .link {
    color: var(--accent-color);
    transition: color 0.5s;
}

.card .link:hover {
    color: var(--primary);
}

.link.accent-color {
    color: var(--accent-color);
    transition: color 0.5s;
}

.link.accent-color:hover {
    color: var(--dark-bg);
}

.link {
    color: var(--text-color);
    transition: color 0.5s;
    cursor: pointer;
}

.link:hover {
    color: var(--accent-color);
}

.link-white {
    color: white;
}

.link-white:hover {
    color: var(--accent-color);
}

/* ---------------------------- */
/* Overlay                      */
/* ---------------------------- */
.blog-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 69, 81, 0.6) 100%);
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.3) 23.17%, rgba(1, 199, 243, 0.3) 127.38%);
}

.overlay {
    color: var(--accent-color-2);
    opacity: 0.3;
}

.bg-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.bg-overlay-2 {
    background: linear-gradient(0deg, rgba(1, 137, 142, 0.28), rgba(1, 137, 142, 0.28));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonial-overlay {
    background: linear-gradient(0deg, rgba(255, 239, 225, 0.96), rgba(255, 239, 225, 0.96));
    position: absolute;
    width: 75%;
    height: 100%;
    top: 0;
    right: 0;
}

.bg-accent-opacity {
    background: linear-gradient(0deg, rgba(43, 43, 43, 0.86), rgba(43, 43, 43, 0.86));
}

.bg-blur {
    position: absolute;
    background: rgba(24, 21, 24, 0.3);
    border: 1px solid rgba(207, 171, 130, 0.2);
    backdrop-filter: blur(17.5px);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.linear-gradient {
    padding: 14px 42px;
    background-color: var(--accent-color-2);
    border-radius: 50px;
    width: max-content;
}

.cta-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.5%, rgba(1, 199, 243, 0.2) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.contact-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 27.06%, rgba(1, 199, 243, 0.61) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

}

.video-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(180deg, rgba(4, 56, 63, 0.144) 0%, rgba(4, 56, 63, 0.72) 100%);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ---------------------------- */
/* Utility Classes              */
/* ---------------------------- */
.hover-transform:hover {
    transform: translateY(-10px);
}

.font-1 {
    font-family: var(--font-1);
}

.font-2 {
    font-family: var(--font-2);
}

.font-3 {
    font-family: var(--font-3);
}

.ls-2 {
    letter-spacing: 2px;
}

.fs-7 {
    font-size: 0.8rem !important;
}

.fs-very-large {
    font-size: 4.125rem;
}

.fw-black {
    font-weight: 900 !important;
}

.team-detail {
    background-color: var(--background-color);
    color: var(--accent-color);
    transition: all 0.5s;
}

.team-detail:hover {
    background-color: var(--accent-color);
    color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
}

.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}


.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

.image-infinite-bg {
    height: 90vh;
}

.animation-bg {
    animation: background_animation 10s forwards;
}

.bg-attach-fixed {
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100%;
}

.bg-attach-cover {
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
}

.social-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.social-container.column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.character-img {
    position: relative;
    z-index: 2;
}

.w-70 {
    width: 70%;
}

.stock-img {
    position: relative;
    z-index: 20;
}

.customer-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 42px;
    height: 42px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary);
    margin-left: -6px;
    overflow: hidden;
}

.customer-item img {
    object-fit: cover;
    aspect-ratio: 1/1;
}

.customer-item.single {
    margin-left: 0;
}

.testimonial-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 5rem;
    height: 5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    margin-left: -6px;
    overflow: hidden;
}

.bg-box {
    bottom: 0;
    right: 0;
    height: 60%;
    width: 50%;
    border: solid 3px var(--accent-color-2);
}

.icon-box {
    display: flex;
    justify-content: center;
    font-size: 23px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary);
    width: 42px;
    height: 42px;
}

.icon-box:hover {
    color: var(--primary);
    border: 1px solid var(--accent-color);
    background-color: var(--secondary);
}

.icon-box-2 {
    display: flex;
    justify-content: center;
    font-size: 23px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border: 6px solid var(--accent-color-6);
}

.icon-box-2:hover {
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    background-color: var(--primary);
}

.icon-box-3 {
    display: flex;
    justify-content: center;
    font-size: 23px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    color: var(--primary);
    width: 42px;
    height: 42px;
    font-weight: 600;
    padding: 10px 6px;
}

.icon-box-3:hover {
    color: var(--primary);
    background-color: var(--secondary);
}

.icon-box-4 {
    display: flex;
    justify-content: center;
    font-size: 17px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--primary);
    width: 27px;
    height: 27px;
}

.icon-box-4:hover {
    color: var(--primary);
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
}

.icon-box-5 {
    display: flex;
    justify-content: center;
    font-size: 23px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--accent-color);
    width: 42px;
    height: 42px;
}

.author-box {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 15rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    overflow: hidden;
}

.post-button {
    background-color: transparent;
    color: var(--accent-color) !important;
    border: none !important;
}

.post-button:hover {
    background-color: transparent !important;
    color: var(--accent-color) !important;
    transform: scale(1.15);
}

.position-xl-absolute {
    position: absolute;
}

.w-60 {
    width: 60% !important;
}

.shadow-double {
    box-shadow: 40px -40px 0px -4px var(--accent-color), -54px 44px 0px -3px var(--text-color-2);
}

.shadow-single-left {
    box-shadow: -54px 44px 0px -3px var(--accent-color);
}

.shadow-single-right {
    box-shadow: 40px -40px 0px -4px var(--accent-color);
}

.shadow-accent-2 {
    -webkit-box-shadow: -90px -23px 0px 0px var(--accent-color);
    -moz-box-shadow: -90px -23px 0px 0px var(--accent-color);
    box-shadow: -90px -23px 0px 0px var(--accent-color);
}

.text-404 {
    font-size: 200px;
    font-weight: bold;
    font-family: var(--font-2);
}

.number-text {
    font-size: 96px;
    font-weight: bold;
}

.text-banner {
    font-size: 200px;
}

.rounded-end {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.swiperImage.floating-left {
    margin-left: 16rem;
}

.floating-heading {
    margin-left: -15rem;
}

.floating-image {
    display: block;
}

.floating-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.floating-price {
    top: -2.5rem;
    right: -10rem;
}

.floating-banner {
    margin-top: -15rem;
}

.floating-top {
    margin-top: -4rem;
}

.floating-services {
    position: relative;
    z-index: 9999;
    margin-top: 3rem;
    margin-bottom: -3rem;
}

.floating-testi {
    margin-bottom: -8rem;
    margin-top: 19rem;
    margin-left: 15rem;
}

.floating-services-2 {
    margin-left: -5rem;
}

.floating-services-2 .padding {
    padding-left: 7rem;
}

.floating-services-3 {
    position: relative;
    margin-top: 3rem;
    margin-bottom: -3rem;
}

.floating-services-3 .padding {
    padding-left: 3rem;
    padding-right: 7rem;
}

.floating-bottom {
    position: absolute;
    top: 8rem;
    left: -5.5em;
}

.floating-bottom-1 {
    position: absolute;
    bottom: 5rem;
    right: 0;
}

.floating-bottom-2 {
    position: absolute;
    bottom: 5rem;
    right: 0;
}

.floating-contact {
    margin-left: -7rem;
    border-bottom-left-radius: 1rem;
}

.floating-counter {
    position: relative;
    margin-top: -6rem;
    z-index: 9999;
}

.floating-blog {
    margin-top: -3rem;
}

.image-container {
    position: relative;
    display: inline-block;
}

.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(24, 21, 24, 0.5);
    border: 0.5px solid var(--text-color);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hotspot:hover {
    background-color: var(--accent-color);
}

.hotspot i {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.hotspot:hover i {
    color: white;
}

/* Tooltip */
.hotspot::after {
    content: attr(data-text);
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    white-space: nowrap;
    display: none;
}

.hotspot:hover::after {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.position-responsive {
    position: absolute;
}

.list .icon-box {
    width: 4.3rem;
    height: 4.3rem;
}

.list-flush-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item {
    border-right: 1px solid white;
}

.list-flush-horizontal .list-item:last-child {
    border-left: 1px solid white;
    border-right: none;
}

.list-flush-horizontal .list-item:nth-last-child(2) {
    border: none;
}

.list-group-item {
    background-color: transparent;
    border-radius: 10px;
}

.list-group .link {
    background-color: transparent;
    border: none;
    color: var(--text-color-2);
    transition: all 0.5s;
    border-radius: 0px;
    font-size: 16px;
    font-family: var(--font-1);

}

.list-group .link.active {
    color: var(--accent-color);

}

.list-group .link:hover {
    color: var(--accent-color) !important;
    text-decoration: none;
}

.list-group .list-group-item.active {
    background-color: var(--accent-color-2);
    color: var(--accent-color);
}

.list-group .list-group-item.list-group-item-action:hover {
    background-color: var(--accent-color-2);
    color: white;
}

.list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    padding-inline: 0.5rem;
}

.list .link {
    font-weight: 400;
    text-wrap: nowrap;
}

.list li {
    padding: 0;
    font-size: 16px;
    font-family: var(--font-2);
}

.list li .link {
    transition: all 0.5s;
    color: var(--text-color-2);
}

.list li i {
    transition: all 0.5s;
    color: var(--accent-color);
}

.list.text-black i {
    color: #131313;
}

.list li .link:hover,
.list li .link:hover i {
    color: var(--accent-color);
}

.countdown {
    display: flex;
    gap: 20px;
}

.countdown-box {
    background-color: var(--accent-color);
    color: white;
    text-align: center;
    padding: 30px;
    width: 200px;
    border-radius: 8px;
}

.countdown-box h2 {
    margin: 0;
    font-size: 2em;
}

.countdown-box p {
    margin: 0;
    font-size: 1.2em;
}

/* ---------------------------- */
/* Social and Contact Setting    */
/* ---------------------------- */
.customer-container {
    display: flex;
    flex-direction: row-reverse;
}

.customer-item:nth-child(1) {
    z-index: 6;
}

.customer-item:nth-child(2) {
    z-index: 5;
}

.customer-item:nth-child(3) {
    z-index: 4;
}

.customer-item:nth-child(4) {
    z-index: 3;
}

.subscribe-container {
    box-sizing: border-box;
    margin-bottom: -8em;
}

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 40px;
    height: 2rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}


.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 20px;
    width: 2.5rem;
    height: 2.5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    background-color: var(--text-color);
    border: 1px solid white;
}

.social-item-2 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 24px;
    width: 40px;
    height: 40px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color-2);
    border: 1px solid var(--accent-color);

}

.social-item-3 {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 24px;
    width: 20px;
    height: 20px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
}

.social-container.accent .social-item {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.social-container.accent .social-item:hover {
    background-color: var(--accent-color);
    color: white;

}

.social-container.share .social-item {
    background-color: var(--accent-color);
    color: white;
}

.social-container.share .social-item:hover {
    background-color: var(--accent-color);
    color: white;
    border: 1px solid var(--accent-color);
}


.social-container.team .social-item {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 16px;
}


.social-item:hover {
    background-color: var(--accent-color);
}

.social-item-2:hover {
    color: var(--primary);
    background-color: var(--accent-color);
}

.social-item-3:hover {
    color: var(--text-color);
}

.social-container .share-button {
    background-color: var(--accent-color-1);
    aspect-ratio: 1/1;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.share-button:hover {
    background-color: var(--accent-color-2);
}

/* ---------------------------- */
/* Breadcrumb    */
/* ---------------------------- */
.breadcrumb {
    align-items: center;
    font-family: var(--font-2);
}

.breadcrumb .breadcrumb-item>a {
    color: var(--text-color);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--accent-color);
    font-family: var(--font-2);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--accent-colorbolee);
}

/* ---------------------------- */
/* Specific Media Queries       */
/* ---------------------------- */
.video-e119 {
    width: 60%;
    margin-bottom: -3rem;
    margin-left: -3rem;
}

.ifr-video {
    aspect-ratio: 16/9;
    width: 100%;
}

.video-container {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 5px solid white;
    border-radius: 10px;
}

.video-iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 4rem;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
    color: white;
    border: none;
    opacity: 0.7;
}

.video-btn:hover {
    opacity: 1;
    color: white;
}

.request-loader {
    position: relative;
    height: 60px;
    width: 60px;
    border-radius: 50% !important;
    background-color: var(--accent-color);
    border: solid 2px var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 25px;
    aspect-ratio: 1/1;
}

.request-loader:hover {
    color: var(--accent-color);
    background: transparent;
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after {
    animation-delay: 0.5s;
    animation-duration: 3s;
}

.request-loader::before {
    animation-delay: 0.2s;
    animation-duration: 3s;
}


/* ---------------------------- */
/* card Setting       */
/* ---------------------------- */
.card {
    border: none;
    border-radius: 10px;
    transition: all 0.5s;
    background-color: var(--primary);
}

.card-accent {
    color: var(--accent-color);
    position: relative;
    background-size: cover;
    background-position: center;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    border-image: linear-gradient(to left, #A502A8, #2F4A9D)1;
}

.card-blog {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-color);
}

.card-blog:hover,
.card-blog:hover .card-read-more, 
.card-blog:hover .read-more {
    color: var(--accent-color);
}

.card-blog:hover span {
    color: var(--text-color);
}

.card-blog:hover .icon-box-4 {
    background-color: var(--accent-color);
    color: var(--primary);
}

.card-blog h6 {
    color: var(--text-color);
}

.card-blog:hover h6 {
    color: var(--accent-color);
}

.card-service {
    background-color: var(--accent-color-6);
    color: var(--text-color);
    border-radius: 50px;
    border: 1px solid transparent;
    padding: 30px 30px;
    transition: all 0.5s;
}

.card-service:hover {
    color: var(--text-color);
    transform: translateY(-20px);
    background-color: var(--accent-color-2);
    border: 1px solid transparent;
}

.card-service:hover .icon-box-2 {
    border-color: var(--accent-color-2);
}

/* Class Cards */
.class-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1300px;
    align-items: center;
}

.class-card {
    background-color: var(--background-color);
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Hide all by default */
}

.class-card:hover {
    transform: translateY(-10px);
    transition: all 0.5s;
}

.class-card.active {
    display: block;
    /* Show active cards */
}

.class-info {
    color: var(--primary);
    margin: 20px;
    font-family: var(--font-2);
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.class-speakers {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.class-price {
    font-size: 1.2em;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: max-content;
}

.class-link {
    color: #ff3b3b;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

.navigation {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr 0.5fr;
    align-items: center;
    color: var(--secondary);
    transition: all 0.5s;
}

.navigation:hover {
    color: var(--accent-color);
}

.navigation a {
    background-color: var(--secondary);
    width: 27px;
    height: 27px;
    border-radius: 100px;
    color: var(--primary);
    padding: 5px;
    transition: all 0.5s;
}

.navigation:hover a {
    color: var(--primary);
    background-color: var(--accent-color);
}

.navigation img {
    opacity: 0;
    margin-block: -3rem;
    justify-self: center;
    transition: all 1s;
    transform: scale(1);
    position: relative;
    border-radius: 30px;
    z-index: 9999;
}

.navigation:hover img {
    opacity: 1;
}

.background-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.card-service:hover .background-hover {
    opacity: 1;
    background: linear-gradient(118.48deg, rgba(47, 74, 157, 0.4) 0%, rgba(165, 2, 168, 0.4) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    border-radius: 10px;

}

.card-service.img-hover:hover {
    background-image: var(--url-image);
}

.image-hover {
    opacity: 0;
    position: absolute;
}

.card-service:hover .image-hover {
    opacity: 100%;
}

.card-service-detail {
    background-color: var(--accent-color-4);
    display: flex;
    flex-direction: column;
    padding: 41px 27px;
    border-radius: 50px;
    gap: 12px;
}

.card-detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid var(--accent-color-9);
    justify-content: space-between;
    transition: all 0.5s;
    padding-bottom: 5px;
}

.card-detail:hover {
    color: var(--accent-color);
}

.card-detail:hover .icon-box-4 {
    background-color: var(--accent-color);
}

.card-testimonial {
    border: none;
    border-radius: 20px;
    transition: all 0.5s;
    background-color: var(--accent-color-3);

}

.card .icon-box.bg-accent-color {
    background-color: var(--accent-color);
    color: var(--accent-color);
}

.card .icon-box.accent-color-2 {
    color: var(--accent-color-2);
    font-size: 4rem;
}

.card:hover .icon-box.accent-color-2 {
    color: var(--accent-color-2);
}

.card:hover {
    transform: translateY(-5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-testimonial:hover {
    transform: translateY(-20px);
    box-shadow: 0px 0px 0px 2px var(--accent-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card-pricing {
    color: var(--black);
    background: var(--accent-color-4);
    border-radius: 50px;
    padding: 64px 32px 48px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
}

.card-pricing:hover {
    background: var(--accent-color-2);
    transform: translateY(-20px);
    border: 1px solid transparent;
    color: var(--black);
}

.card-pricing .custom-border {
    border-bottom: 2px solid var(--accent-color-8);
}

.card-pricing:hover .custom-border {
    border-bottom: 2px solid var(--accent-color-10);
}

.card-pricing .icon-box-5 {
    display: flex;
    justify-content: center;
    font-size: 23px;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border: 6px solid white;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--primary);
    width: 45px;
    height: 45px;
    padding: 32px 10px 32px 10px;
}

.card-pricing:hover .icon-box-5 {
    background: var(--accent-color-4);
    transform: scale(1.02);
    border: 6px solid white;
    color: var(--accent-color);
}

.card-pricing-detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
}

.card-pricing-middle {
    transform: scale(1);
    flex: 1.00;
    color: white;
}

.card.card-pricing span,
.card.card-pricing i {
    color: var(--black);
}

.card.card-pricing:hover .btn-accent {
    background-color: var(--black);
    color: var(--yellow);
}

.card.card-pricing:hover .btn-accent span,
.card.card-pricing:hover .btn-accent i {
    color: var(--yellow);
}

.card.card-pricing .custom-border-4 {
    border-bottom: 1px solid var(--accent-grey-2);
}

.card.card-pricing:hover .custom-border-4 {
    border-bottom: 1px solid var(--accent-yellow);
}

.card.card-pricing-hover {
    color: var(--text-color);
    border: 1px solid #01c7f349;
    border-radius: 20px;
    background: linear-gradient(140.72deg, rgba(30, 30, 30, 0.7) -67.01%, rgba(5, 5, 5, 0.7) 100.85%);
    backdrop-filter: blur(12.4px);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.box-price {
    border: 1px solid;
    border-image: linear-gradient(210deg, #00000045, #01c7f349) 1;
    box-shadow:
        0 7px 15px 0 rgba(0, 0, 0, 0.13),
        0 1px 4px 0 rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    background: linear-gradient(140.72deg, rgba(30, 30, 30, 0.7) -67.01%, rgba(5, 5, 5, 0.7) 100.85%);
    backdrop-filter: blur(12.4px);
}

.card.card-pricing-hover:hover h3 {
    color: var(--accent-color);
}

.card.card-pricing-hover:hover {
    border: 1px solid var(--accent-color-2);
    background: linear-gradient(180deg, #01C7F3 -81.79%, #111111 100%);

    transform: scale(1.05);
}

.card-pricing-hover-middle {
    transform: scale(1.04);
    flex: 1.00;
    box-shadow: 0px 0px 0px 2px var(--accent-color);
    color: white;
}


.card.card-pricing-hover:hover .btn-accent-outline {
    background-color: var(--text-color);
    color: var(--primary);
}

.card.card-pricing-hover .btn-accent-outline i {
    color: var(--text-color);
}

.card.card-pricing-hover:hover .btn-accent-outline i {
    color: var(--primary);
}

.card:hover .icon-box.bg-accent-color {
    background-color: var(--accent-color);
    color: var(--accent-color-2);

}

.card.card-outline-hover {
    box-shadow: 0 7px 15px 0 rgba(0, 0, 0, .13), 0 1px 4px 0 rgba(0, 0, 0, .11);
    border: 1px solid var(--accent-color);
}

.card.blog {
    background-color: var(--background-color);
}

.card.blog:hover {
    border: solid 1px var(--accent-color-2);
    border-radius: 10px;
}


.card.card-outline-hover:hover .btn-accent {
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.card:hover .icon-box.bg-accent-color {
    background-color: white;
    color: var(--accent-color);
}

.card:hover p {
    transition: all 0.5s;
}

.card.with-border-bottom {
    border-bottom: 5px solid var(--accent-color) !important;
}

.card-about {
    background-color: var(--background-color);
    padding: 3rem;
    transition: all 0.8s;
}


.card-about:hover p {
    color: var(--primary);
}

.card-about:hover .icon-box-2 {
    background-color: var(--primary);
    color: var(--accent-color-2);
}

.card-about:hover {
    background-color: var(--accent-color-2);
    margin-top: -5rem;
    color: var(--primary);
    height: calc(100% + 5rem);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.testimonial-container {
    background-color: transparent;
    padding: 60px 30px 30px 50px;
    border-radius: 0;
    border: 1px solid transparent;
    color: var(--text-color-2);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 80%;
}

.testimonial-container:hover {
    box-shadow: none;
    transition: all 0.5s;
    backdrop-filter: blur(12.4px);
}

.testimonial-container:hover .team-name {
    color: var(--accent-color);
}

.testimonial-container .icon-hover {
    color: var(--accent-color-3);
    font-size: 84px;
    transition: all 0.5s;
}

.testimonial-container:hover .icon-hover {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--accent-color-2);
    font-size: 37px;
    margin-top: 1rem;
    margin-right: 2rem;
}

.services-container {
    background-color: transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
}

.features-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.feature-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--accent-color);
    color: var(--primary);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box-middle {
    transform: scaleY(1.15) scaleX(1.05);
}

.feature-box-middle h3,
.feature-box-middle p {
    position: relative;
    transform: none;
    will-change: contents;
}

/* Class Cards */

.class-team {
    display: none;
}

.class-team.active {
    display: block;
}

.class-card:hover {
    transform: translateY(-10px);
    transition: all 0.5s;
}

.class-card.active {
    display: block;
    /* Show active cards */
}

.class-info {
    color: var(--primary);
    margin: 20px;
    font-family: var(--font-2);
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.class-speakers {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.class-price {
    font-size: 1.2em;
    color: var(--primary);
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    width: max-content;
}

.class-link {
    color: #ff3b3b;
    font-weight: bold;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

/* Tab Navigation */
.tab-container.allteam {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 20px 0;
    font-family: var(--font-2);
}

.tab-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    font-family: var(--font-1);
}

.tab-container.team {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
    align-items: center;
}

.tab-container.faq {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    width: 100%;
}


.background-container {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.tabs {
    display: flex;
    justify-content: space-around;

}

.tabs .card-overlay img {
    padding-left: 0;
    transition: all 0.5s;
}

.class-card .card-overlay img {
    padding-left: 0;
    transition: all 0.5s;
}

.tabs.studio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    z-index: 2;
    background: rgba(35, 31, 32, 0.3);
    backdrop-filter: blur(17.5px);
    padding: 30px;

}

.tabs.faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 30px;
    background-color: var(--background-color);
    border: 1px solid var(--accent-color-3);
    height: max-content;
}

.tabs.team {
    display: flex;
    flex-direction: row;
    gap: 1rem;

}

.tabs.faq .tab {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: row;
    padding: 16px 24px;
    gap: 1rem;
    justify-content: space-between;
    cursor: pointer;
    color: var(--text-color);
    transition: background 0.5s ease-in-out;
    border-right: none;
}

.tabs.team .tab {
    flex: 1;
    text-align: left;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color-2);
    transition: background 0.5s ease-in-out;
    border-right: none
}

.tabs.studio .tab {
    flex: 1;
    text-align: left;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color-2);
    transition: background 0.5s ease-in-out;
    border-right: none
}

.tab {
    padding: 2px 10px;
    color: var(--accent-color);
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    border: 1px solid var(--accent-color);
}

.tab-container.allteam .tab {
    flex: 1;
    text-align: center;
    cursor: pointer;
    color: var(--text-color);
    transition: background 0.5s ease-in-out;
    border-right: none;
    padding-block: 10px;
}

.tab-container.allteam .tab.active {
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

.tab.active {
    color: var(--primary);
    background-color: var(--accent-color);
}

.tab .title-tab {
    font-size: 32px;
    font-weight: bold;
    padding: 30px;
}

.tab.active .title-tab {
    background-color: var(--primary);
}

.tabs.studio .tab.active {
    color: var(--primary);
    background: var(--accent-color)
}

.tabs.faq .tab.active {
    color: var(--primary);
    background: var(--accent-color)
}

.tab-content.studio {
    position: relative;
    bottom: unset;
    left: unset;
    max-width: unset;
    background: var(--primary);
    padding: 40px;
    text-align: left;
}

.tab-content.faq {
    position: relative;
    bottom: unset;
    left: unset;
    max-width: unset;
    background: var(--accent-color-3);
    padding: 40px;
    text-align: left;
}

.tab-content.team {
    position: relative;
    bottom: unset;
    left: unset;
    max-width: unset;
    background: var(--primary);
    text-align: left;
}

.content {
    display: none;
}

.content.active {
    display: block;
}

.tab .content {
    display: none;
    position: absolute;
    bottom: 10rem;
    margin-left: -4rem;
    max-width: 500px;
    padding: 40px;
    text-align: left;
    background: rgba(35, 31, 32, 0.3);
    backdrop-filter: blur(17.5px);
    /* Sembunyikan semua konten */
}

.tab.active .content {
    display: block;
    /* Tampilkan konten yang aktif */
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 kolom */
    gap: 0;
    /* Jarak antar elemen 0 untuk mengatur garis */
    position: relative;
}

.grid-item-1 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-2 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-3 {
    border-bottom: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal bawah */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-4 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-top: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-5 {
    border-right: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kanan */
    border-left: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    border-top: 1px solid rgb(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

.grid-item-6 {
    border-left: 1px solid rgba(255, 255, 255, 0.61);
    /* Garis vertikal kiri */
    border-top: 1px solid rgba(255, 255, 255, 0.61);
    /* Garis horizontal atas */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    /* Ruang untuk gambar */
}

/* ---------------------------- */
/* Progress and Rating       */
/* ---------------------------- */
.r-progress {
    --value: 17;
    --progress-color: var(--text-color);
    --secondary-progress-color: var(--accent-color-2);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 8px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 3px;
    /* overflow: hidden; */
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background-color: var(--progress-color);
    position: relative;
    border-radius: 3px;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
}

.r-progress-bar.percentage-label::after {
    counter-reset: percentage var(--progress);
    content: counter(percentage) '%';
    display: block;
    position: absolute;
    left: calc((var(--progress) * 1%));
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    font-size: 18px;
    line-height: 1.2;
    /* font-weight: 700; */
    font-family: var(--font-1);
    bottom: calc(100% + 0.5rem);
}

.rating {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
}

.rating li {
    color: #f1c644;
}

.rating li.inactive {
    color: #d9d9d9;
}

.glass-effect {
    background: var(--accent-color-3);
    opacity: 0.9;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

#player-container {
    width: 100%;
    height: 100%;
    margin-top: 5rem;
}

#player-bg-artwork {
    position: fixed;
    top: -30px;
    right: -30px;
    bottom: -30px;
    left: -30px;
    background-image: url("https://raw.githubusercontent.com/himalayasingh/music-player-1/master/img/_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    filter: blur(40px);
    -webkit-filter: blur(40px);
    z-index: 1;
}

#player-bg-layer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.5;
    z-index: 2;
}

#player {
    position: relative;
    height: 100%;
    z-index: 3;
}

#player-track {
    width: auto;
    flex: 1 1 0px;
    height: 100%;
    padding: 13px 10px 10px 13px;
    border-radius: 15px 15px 0 0;
    transition: 0.3s ease top;
    z-index: 1;
}

#album-name {
    color: var(--text-color);
    font-size: 17px;
    font-weight: bold;
}

#track-name {
    color: var(--accent-color);
    font-size: 13px;
    margin: 2px 0 13px 0;
}

#track-time {
    height: 12px;
    margin-bottom: 3px;
    overflow: hidden;
}

#current-time {
    float: left;
}

#track-length {
    float: right;
}

#current-time,
#track-length {
    color: var(--text-color);
    font-size: 11px;
    border-radius: 10px;
    transition: 0.3s ease all;
}

#track-time.active #current-time,
#track-time.active #track-length {
    color: var(--text-color);
    background-color: transparent;
}

#seek-bar-container,
#seek-bar {
    position: relative;
    height: 4px;
    border-radius: 4px;
}

#seek-bar-container {
    background-color: var(--text-color);
    cursor: pointer;
}

#seek-time {
    position: absolute;
    top: -29px;
    color: #fff;
    font-size: 12px;
    white-space: pre;
    padding: 5px 6px;
    border-radius: 4px;
    display: none;
}

#s-hover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
    z-index: 2;
}

#seek-time,
#s-hover {
    background-color: #3b3d50;
}

#seek-bar {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--accent-color);
    transition: 0.2s ease width;
    z-index: 1;
}

#player-content {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
    padding: 16px;
    width: 100%;
    background: rgba(24, 21, 24, 0.3);
    backdrop-filter: blur(17.5px);

}

#album-art {
    width: 115px;
    height: 115px;
    transform: rotateZ(0);
    transition: 0.3s ease all;
    border-radius: 50%;
    overflow: hidden;
}

#album-art.active {
    top: -60px;
    box-shadow: 0 0 0 4px #fff7f7, 0 30px 50px -15px #afb7c1;
}

#album-art:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 20px;
    height: 20px;
    margin: -10px auto 0 auto;
    background-color: var(--accent-color-3);
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px #fff;
    z-index: 2;
}

#album-art img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -1;
}

#album-art img.active {
    opacity: 1;
    z-index: 1;
}

#album-art.active img.active {
    z-index: 1;
    animation: rotateAlbumArt 3s linear 0s infinite forwards;
}

@keyframes rotateAlbumArt {
    0% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

#buffer-box {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 13px;
    color: #1f1f1f;
    font-size: 13px;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    padding: 6px;
    margin: -12px auto 0 auto;
    opacity: 0;
    z-index: 2;
}

#album-art img,
#buffer-box {
    transition: 0.1s linear all;
}

#album-art.buffering img {
    opacity: 0.25;
}

#album-art.buffering img.active {
    opacity: 0.8;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

#album-art.buffering #buffer-box {
    opacity: 1;
}

#player-controls {
    width: auto;
    display: flex;
    gap: 2rem;
    height: 100%;
    float: right;
    overflow: hidden;
}

.control {
    width: 33.333%;
    float: left;
    padding: 12px 0;
}

.button i {
    display: block;
    color: #d6dee7;
    font-size: 16px;
    text-align: center;
    line-height: 1;
}

.button,
.button i {
    transition: 0.2s ease all;
}

.button:hover i {
    color: #fff;
}

/* ---------------------------- */
/* Accordion                    */
/* ---------------------------- */
.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-btn-padding-x: 0;
}

.accordion .accordion-item {
    background-color: transparent;
    border: none;
    color: var(--text-color-2);
    outline: none;
    border-radius: 0;
    border-bottom: 1px solid var(--accent-color-9);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button {
    background-color: transparent;
    color: var(--text-color-2);
    outline: none;
    border-radius: 0 !important;
    font-family: var(--font-1);
    font-size: 20px;
    font-weight: 500;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding-block: 1.2rem;
    color: var(--text-color);
}

.accordion .accordion-button.accent {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}


.accordion-button::after {
    background-color: var(--text-color);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FBFBFB" class="bi bi-chevron-right" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23FBFBFB" class="bi bi-chevron-left" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0"/></svg>');
    background-color: var(--accent-color);
}

.accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background-color: transparent;
    outline: none;
    box-shadow: none;
}

.accordion .accordion-body {
    background-color: transparent;
    font-size: 16px;
    color: var(--accent-color-3);
    font-family: var(--font-1);
    padding-inline: 0;
}


@media only screen and (max-width:1024px) {

    /* ---------------------------- */
    /* Typography                   */
    /* ---------------------------- */
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 22px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 14px;
    }

    p,
    button,
    a {
        font-size: 13px;
    }

    .text-banner {
        font-size: 50px;
    }

    /* ---------------------------- */
    /* Button and Links Setting     */
    /* ---------------------------- */
    .btn {
        font-size: 13px;
        width: 100%;
    }

    /* ---------------------------- */
    /* Header and Navigation Setting  */
    /* ---------------------------- */
    .logo-container {
        max-width: 100px;
    }

    .nav-link {
        padding-block: 0.2rem;
        text-align: center;
    }

    #header {
        background: var(--background-color);
        backdrop-filter: blur(11px);
        -webkit-backdrop-filter: blur(11px);
    }

    /* ---------------------------- */
    /* Utility Classes              */
    /* ---------------------------- */
    .p-banner {
        color: var(--text-color);
    }

    .section {
        padding: 4em 2em 4em 2em;
    }

    .divider {
        width: 330px;
    }

    .fs-very-large {
        font-size: 3.125rem;
    }

    .text-404 {
        font-size: 8rem;
        font-weight: 700;
    }

    .image-absolute-1 {
        left: 45%;
        top: 35%;
    }

    .image-infinite-bg {
        background-size: cover !important;
    }


    .border-custom {
        border-width: 0px 0px 1px 0px;
    }

    .outer-margin {
        margin-right: 0;
    }

    .banner-image {
        margin: 0;
        transform: none;
    }

    .testimonial-img {
        margin: 0;
        margin-bottom: 1rem;
    }

    .dropdown-menu {
        width: 100%;
        box-shadow: none;
    }

    .video-e119 {
        width: 85%;
        margin-left: -1.5rem;
    }

    .dropdown-item {
        padding-block: 0.35rem;
    }

    .floating-image {
        position: relative;
        display: flex;
        justify-content: end;
        margin-top: -9rem;
    }

     .floating-image-2 {
        display: none;
    }

    .floating-price {
        top: -2.5rem;
        right: -7.5rem;
    }

    .floating-heading {
        margin-left: 0;
    }

    .floating-banner {
        top: 0;
        left: 0;
        right: 0;
        margin-right: 1rem;
        margin-left: 1rem;
        margin-top: -10rem;
    }

    .floating-top {
        margin-top: 3rem;
    }

    .floating-testi {
        margin-bottom: 1rem;
        margin-top: 1rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .floating-services {
        position: relative;
        z-index: 9999;
        margin-top: 3rem;
        margin-bottom: 1rem;
    }

    .floating-services-2 {
        margin-left: 0;
    }

    .floating-services-2 .padding {
        padding-left: 3rem;
    }

    .floating-services-3 {
        position: relative;
        margin-top: 1rem;
        margin-bottom: -3rem;
    }

    .floating-services-3 .padding {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .floating-bottom {
        position: initial;
        top: 0;
        left: 0;
    }

    .floating-bottom-1 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
    }

    .floating-bottom-2 {
        position: initial;
        bottom: 0;
        right: 0;
        left: 0;
        margin-top: 1rem;
    }

    .floating-contact {
        margin-left: 0rem;
    }

    .floating-counter {
        position: relative;
        margin-top: -5rem;
        z-index: 9999;
    }

    .floating-blog {
        margin-top: 0;
    }

    .border-testimonial {
        border-right: none;
    }

    .service-container {
        background-color: transparent;
        padding: 30px;
        display: flex;
        flex-direction: column;
        gap: 1.75rem;
        box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1);
        height: 100%;
    }

    .appointment-box {
        top: -2rem;
        bottom: 0;
        left: 0;
        right: 0;
        height: 8rem;
    }

    .w-md-70 {
        width: 70%;
    }

    .w-md-60 {
        width: 60%;
    }

    .position-responsive {
        position: relative;
    }

    .form-appointment-container {
        position: relative;
        transform: translateY(0);
    }

    .input-group{
        max-width: 658px;
        margin: 0 auto;
    }

    .list-flush-horizontal {
        flex-direction: column;
    }

    .list-flush-horizontal .list-item:first-child,
    .list-flush-horizontal .list-item {
        border-right: none;
        border-bottom: 1px solid white;
    }

    .list-flush-horizontal .list-item:last-child {
        border-left: none;
        border-bottom: none;
        border-top: 1px solid white;
    }

    .position-xl-absolute {
        position: static;
    }

    .banner-heading {
        font-size: 2.5rem;
    }

    .tabs.studio {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        position: relative;
        z-index: 2;
        background: rgba(35, 31, 32, 0.3);
        backdrop-filter: blur(17.5px);
        padding: 30px;
        align-items: center;

    }

    .tabs {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .tab-content {
        position: relative;
        left: 0;
    }

    .tab-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
    }

    .class-container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-content: center;
        align-items: center;
    }

    footer .d-flex.flex-column {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        padding: 0 0 0 0;
    }

    footer .link.d-flex.flex-row {
        text-align: center;
        justify-content: center;
        align-items: center;

    }

    footer .list {
        padding: 0 0 0 0;
    }

    .footer {
        position: relative;
    }

    .float-button {
        margin-top: 3rem;
    }

    .float-img {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        left: 0;
    }

    .float-img-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    }

    .float-team {
    position: absolute;
    bottom: 0;
    left: 11.5rem;
    }

    .features-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .swiperImage {
        padding-bottom: 0;
    }

    .service-scroll {
        padding-right: 1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        visibility: hidden;
        display: none;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        visibility: hidden;
        display: none;
    }

    .icon-box.link {
        font-size: 25px;
        padding: 25px;
    }

    .tab .content {
        margin-left: 0;
        position: static;
    }

}

/* =========================================================
   Furnyx Homepage (index.html)
   Scoped by body.fx-page to avoid impacting other pages.
   ========================================================= */

body.fx-page {
  background: #fffaf0;
}

body.fx-page .r-container {
  max-width: 1240px;
}

/* Color system */
body.fx-page {
  --fx-green: #145a46;
  --fx-green-2: #0f4a3a;
  --fx-cream: #fbf5ea;
  --fx-cream-2: #f3ead9;
  --fx-gold: #d9b76a;
  --fx-ink: #0c1a14;
  --fx-muted: rgba(12, 26, 20, 0.70);
  --fx-border: rgba(255, 255, 255, 0.16);
}

/* Header */
.fx-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
}

.fx-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 24px;
}

.fx-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fx-gold);
  letter-spacing: 0.12em;
}

.fx-brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: var(--fx-green);
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.fx-brand-text {
  font-weight: 800;
  font-size: 14px;
}

.fx-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
}

.fx-nav-link {
  text-decoration: none;
  color: rgba(12, 26, 20, 0.75);
  font-weight: 600;
  font-size: 14px;
}

.fx-nav-link:hover {
  color: rgba(12, 26, 20, 0.95);
}

.fx-header-cta {
  white-space: nowrap;
  border: 0;
}

/* Hero */
.fx-hero {
  position: relative;
  padding: 110px 0 64px;
  overflow: hidden;
}

.fx-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 245, 225, 0.94) 0%, rgba(255, 245, 225, 0.78) 36%, rgba(255, 245, 225, 0.00) 65%),
    radial-gradient(circle at 65% 40%, rgba(20, 90, 70, 0.12), rgba(20, 90, 70, 0.00) 60%),
    url("../image/dog-bondle-woman.png");
  background-size: cover;
  background-position: center;
  /* transform: scale(1.03); */
  filter: saturate(1.05) contrast(1.02);
}

.fx-hero-product{
    max-width: 100%;
    height: auto;
    display: block;
}

.fx-hero-inner {
  position: relative;
  padding: 0 24px;
}

.fx-hero-grid {
  display: grid;
  grid-template-columns: 1.20fr 0.80fr;
  gap: 36px;
  align-items: center;
}

.fx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(12, 26, 20, 0.65);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.fx-dot {
  width: 10px;
  height: 10px;
  background: var(--fx-gold);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(217, 183, 106, 0.35);
}

.fx-hero-title {
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.fx-hero-title-top {
  display: block;
  font-weight: 800;
  font-size: clamp(34px, 4vw, 56px);
  color: #232323;
  letter-spacing: 0.16em;
}

.fx-hero-title-main {
  display: block;
  font-weight: 900;
  font-size: clamp(42px, 5vw, 74px);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.92);
}

.fx-hero-title-sub {
  display: block;
  margin-top: 10px;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--fx-green);
  letter-spacing: 0.10em;
  text-shadow: none;
}

.fx-checks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.fx-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: rgba(12, 26, 20, 0.80);
}

.fx-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.85);
  color: var(--fx-green);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  font-weight: 900;
}

.fx-hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.fx-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  color: var(--fx-ink);
  font-weight: 800;
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
}

.fx-pill-btn:hover {
  background: #ffffff;
  color: var(--fx-ink);
}

.fx-pill-btn--secondary {
  background: var(--fx-cream);
}

.fx-arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--fx-gold);
  color: #0b1b13;
  font-weight: 900;
}

.fx-micro-note {
  font-weight: 600;
  color: rgba(12, 26, 20, 0.65);
  padding-left: 6px;
}

.fx-hero-stage {
  position: relative;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(20, 90, 70, 0.16), rgba(20, 90, 70, 0.04));
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 30px 80px rgba(0,0,0,0.14);
  overflow: hidden;
  min-height: 520px;
}

.fx-hero-pet {
  position: absolute;
  right: -10%;
  bottom: -6%;
  width: 70%;
  max-width: 520px;
  height: auto;
  border-radius: 48px;
  filter: saturate(1.02) contrast(1.02);
  opacity: 0.95;
  transform: rotate(-1deg);
}

.fx-pack {
  position: absolute;
  left: 7%;
  bottom: 6%;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  z-index: 2;
}

.fx-pack--flat {
  position: relative;
  left: auto;
  bottom: auto;
  justify-content: flex-end;
  width: 100%;
  transform: translateY(10px);
}

.fx-bottle {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(12, 26, 20, 0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.14);
  overflow: hidden;
}

.fx-bottle::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 58%;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, rgba(12, 26, 20, 0.16), rgba(12, 26, 20, 0.06));
}

.fx-bottle::after {
  content: "";
  position: absolute;
  top: -44px;
  right: 12%;
  width: 64px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.55));
  border: 1px solid rgba(12, 26, 20, 0.10);
  box-shadow: 0 16px 30px rgba(0,0,0,0.10);
}

.fx-bottle--mini { width: 120px; height: 210px; transform: translateY(26px); }
.fx-bottle--mid  { width: 160px; height: 280px; transform: translateY(10px); }
.fx-bottle--big  { width: 190px; height: 330px; }

.fx-label {
  position: absolute;
  inset: 16px 14px 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  border: 1px solid rgba(12, 26, 20, 0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fx-label-brand {
  color: var(--fx-gold);
  font-weight: 900;
  letter-spacing: 0.10em;
  font-size: 12px;
}

.fx-label-title {
  color: var(--fx-green);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.15;
}

.fx-label-chip {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 90, 70, 0.10);
  color: var(--fx-green);
}

.fx-hero-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 120px;
  background: linear-gradient(180deg, rgba(251,245,234,0.0), rgba(251,245,234,1));
}

/* Benefits section */
.fx-benefits {
  padding: 28px 0 64px;
  background: var(--fx-cream);
}

.fx-benefits-inner { padding: 0 24px; }

.fx-green-slab {
  position: relative;
  background: var(--fx-green);
  border-radius: 64px;
  padding: 38px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.fx-green-slab::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -220px;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217,183,106,0.22), rgba(217,183,106,0.0) 70%);
}

.fx-green-slab::after {
  content: "";
  position: absolute;
  bottom: -240px;
  left: -240px;
  width: 560px;
  height: 560px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0.0) 68%);
}

.fx-green-left,
.fx-green-right {
  position: relative;
  z-index: 2;
}

.fx-green-left { 
        margin-bottom: 128px;
    margin-top: -100px;
}

.fx-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 520px;
}

.fx-photo-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.fx-photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.fx-photo-card-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(12, 26, 20, 0.55);
  color: #ffffff;
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(8px);
}

.fx-green-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.fx-family-panel {
  position: relative;
  z-index: 3;
  margin-top: 32px;
  border-radius: 44px;
  background: linear-gradient(90deg, rgba(251,245,234,1), rgba(243,234,217,1));
  padding: 26px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.fx-family-photo {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  border: 8px solid rgba(20,90,70,0.12);
}

.fx-family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fx-family-copy h2 {
  margin: 0;
  color: var(--fx-green);
  font-weight: 900;
  font-size: 24px;
}

.fx-family-copy p {
  margin: 8px 0 0;
  color: rgba(12, 26, 20, 0.72);
  font-weight: 600;
  max-width: 640px;
}

/* HERO must allow overlap */
.fx-hero,
.fx-hero-inner,
.fx-hero-grid {
  overflow: visible;
}

.fx-hero-right {
  position: relative;
  overflow: visible;
}

/* Wrap controls the absolute positioning of the pack */
.fx-hero-product-wrap {
    position: absolute;
    right: 80px;
    bottom: -660px;
    z-index: 6;
    pointer-events: none;
}

/* Make the pack BIG */
.fx-hero-product {
    width: min(470px, 40vw);
  max-width: none;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.18));
}

/* BENEFITS sits behind the pack */
.fx-benefits {
  position: relative;
  z-index: 1;
}

/* Give the green slab space at the top so content doesn't collide */
.fx-green-slab {
  padding-top: 140px; /* ajusta si quieres más/menos aire */
}

/* Subir la última sección (family panel) */
.fx-family-panel {
  margin-top: -90px;  /* este es el "lift" para quedar a la altura */
  position: relative;
  z-index: 2;
}

@media (min-width: 1200px) {
  .fx-pack--flat {
    display: none !important;
  }
}

/* Vet section */
.fx-vet {
  padding: 72px 0;
  background: var(--fx-green-2);
  position: relative;
  overflow: hidden;
}

.fx-vet::before {
  content: "";
  position: absolute;
  top: -160px;
  left: -160px;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217,183,106,0.24), rgba(217,183,106,0.00) 72%);
}

.fx-vet::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), rgba(255,255,255,0.00) 70%);
}

.fx-vet-inner { padding: 0 24px; position: relative; z-index: 2; }

.fx-vet-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  border-radius: 56px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    overflow: visible;
}

.fx-vet-badge {
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: conic-gradient(from 120deg, rgba(217,183,106,0.50), rgba(255,255,255,0.16), rgba(217,183,106,0.50));
  padding: 10px;
  display: grid;
  place-items: center;
      overflow: visible;
}

.fx-vet-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: rgba(12, 26, 20, 0.35);
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 16px;
        overflow: visible;
}

.fx-vet-chip {
  text-align: center;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.fx-vet-check {
    width: 30px;
    height: 29px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    display: grid;
    place-items: center;
    color: var(--fx-green);
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.fx-vet-kicker {
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.75);
  font-size: 12px;
}

.fx-vet-copy h2 {
  margin: 8px 0 10px;
  color: #ffffff;
  font-weight: 900;
  font-size: 34px;
}

.fx-vet-copy p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
  max-width: 720px;
}

/* Zero section */
.fx-zero {
  padding: 72px 0 92px;
  background: linear-gradient(180deg, var(--fx-cream), #ffffff);
  position: relative;
  overflow: hidden;
}

.fx-zero-inner { padding: 0 24px; }

.fx-zero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 26px;
  align-items: center;
  border-radius: 64px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid rgba(12, 26, 20, 0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.10);
}

.fx-zero-number {
  font-weight: 950;
  font-size: 350px;
  line-height: 0.8;
  color: var(--fx-green);
  letter-spacing: -0.02em;
}

.fx-zero-number span {
  font-size: 48px;
  margin-left: 8px;
  color: rgba(20, 90, 70, 0.75);
}

.fx-zero-list {
  display: grid;
  gap: 6px;
  padding-left: 0;
  margin-bottom: 16px;
  color: rgba(12, 26, 20, 0.78);
  font-weight: 700;
}

.fx-pill-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fx-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(20, 90, 70, 0.06);
  border: 1px solid rgba(20, 90, 70, 0.12);
  font-weight: 800;
  color: rgba(12, 26, 20, 0.80);
}

.fx-pill i {
  color: var(--fx-green);
}

/* Footer */
.fx-footer {
  background: var(--fx-ink);
  color: rgba(255,255,255,0.78);
  padding: 40px 0;
}

.fx-footer-inner { padding: 0 24px; }

.fx-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.fx-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fx-footer-tagline { font-weight: 600; }

.fx-footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fx-footer-link {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  font-weight: 700;
}

.fx-footer-link:hover { color: #ffffff; }

.fx-footer-bottom {
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .fx-hero-grid { grid-template-columns: 1fr; }
  .fx-hero-stage { min-height: 460px; }
  .fx-hero-pet { width: 76%; right: -12%; }
  .fx-pack { left: 6%; }
  .fx-green-right { justify-content: flex-start; margin-top: 24px; }
  .fx-family-panel { grid-template-columns: 110px 1fr; }
  .fx-family-cta { grid-column: 1 / -1; }
  .fx-vet-card { grid-template-columns: 1fr; text-align: left; }
  .fx-vet-badge { margin: 0 auto; }
  .fx-zero-grid { grid-template-columns: 1fr; }
  .fx-zero-number { font-size: 140px; }
}

@media (max-width: 576px) {
  .fx-header-inner { padding: 0 16px; }
  .fx-hero-inner { padding: 0 16px; }
  .fx-benefits-inner, .fx-vet-inner, .fx-zero-inner, .fx-footer-inner { padding: 0 16px; }
  .fx-green-slab { padding: 22px; border-radius: 44px; }
  .fx-family-panel { padding: 18px; border-radius: 30px; }
  .fx-photo-card img { height: 200px; }
  .fx-bottle--big { width: 170px; height: 305px; }
  .fx-bottle--mid { width: 145px; height: 255px; }
  .fx-bottle--mini { width: 110px; height: 195px; }
}

/* =====================================
   Furnyx extras: animations & dynamics
   (scoped to .fx-*)
===================================== */

/* Smooth micro interactions */
.fx-page a, .fx-page button {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.fx-page .fx-photo-card:hover,
.fx-page .fx-family-panel:hover,
.fx-page .fx-vet-card:hover {
  transform: translateY(-2px);
}

.fx-parallax .fx-pack,
.fx-parallax .fx-hero-pet {
  will-change: transform;
  transition: transform .35s ease;
}

/* Marquee strip */
.fx-marquee {
  padding: 14px 0;
  background: rgba(20, 90, 70, 0.06);
  border-top: 1px solid rgba(20, 90, 70, 0.10);
  border-bottom: 1px solid rgba(20, 90, 70, 0.10);
}

.fx-marquee-track {
  align-items: center;
}

.fx-marquee .marquee-item {
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(12, 26, 20, 0.75);
}

/* Quick stats */
.fx-stats {
  padding: 34px 0 34px;
}

.fx-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fx-stat {
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(20, 90, 70, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.64));
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.fx-stat-number {
  font-weight: 950;
  font-size: 38px;
  color: var(--fx-green);
  line-height: 1;
}

.fx-stat-label {
  margin-top: 6px;
  font-weight: 800;
  color: rgba(12, 26, 20, 0.70);
}

/* =========================
   FIX: Testimonials overflow
========================= */

/* Contener visualmente el slider */
.fx-testimonials {
  position: relative;
  overflow: hidden;
}

/* Permitir sombras internas sin romper layout */
.fx-testimonials .swiper {
  overflow: visible;
}

/* Evita que las slides se desborden al animar */
.fx-testimonials .swiper-slide {
  overflow: hidden;
}

/* Ajuste del card */
.fx-testimonials .testimonial-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

/* Quote icon más controlado */
.fx-testimonials .rtmicon-blockquote {
  font-size: 42px;
  color: rgba(20, 90, 70, 0.25);
  margin-bottom: 12px;
}

/* Autor */
.testimonial-author {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--fx-green);
}

.testimonial-author span {
  font-size: 13px;
  opacity: 0.7;
}


/* Back to top */
.fx-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 90, 70, 0.92);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.24);
  z-index: 9999;
}

.fx-to-top i {
  font-size: 18px;
}

.fx-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fx-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.28);
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .fx-stats-row { grid-template-columns: 1fr; }
}


/* Contenedor general del badge */
.fx-vet-badge,
.fx-vet-badge-inner{
  position: relative;
  overflow: visible; /* clave para que la cabeza salga */
}

/* Tamaño del “badge” (ajusta si ya lo tienes) */
.fx-vet-badge-inner{
  width: 170px;       /* ajusta a tu diseño */
  height: 170px;
  display: grid;
  place-items: center;
    padding-top: 26px;
}

/* El ring/círculo de fondo (no recorta nada) */
.fx-vet-ring{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08); /* o tu color */
  outline: 10px solid rgba(210,185,120,0.25); /* aro externo */
  z-index: 1;
}

/* La imagen: más grande que el círculo y subida */
.fx-vet-avatar{
    position: absolute;
    width: 188px;
    height: 220px;
    left: 50%;
    top: -46px;
    transform: translateX(-50%);
    object-fit: cover;
    border-radius: 16px;
    z-index: 3;
    pointer-events: none;
}

/* Texto HTML encima de la foto */
.fx-vet-chip{
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}

/* Check encima */
.fx-vet-check{
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}


/* =========================
   FX STATS (Modo de uso)
========================= */

.fx-stats {
  padding: clamp(48px, 6vw, 84px) 0;
}

.fx-stats-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(26px, 3.2vw, 44px);
}

.fx-stats-title {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.fx-stats-subtitle {
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  line-height: 1.6;
  opacity: 0.8;
}

/* layout cards */
.fx-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 22px);
  align-items: stretch;
}

.fx-stat {
  border-radius: 18px;
  padding: clamp(18px, 2.2vw, 26px);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* imagen alineada al estilo del sitio */
.fx-stat-img {
  width: 110px;
  height: 110px;
  margin: 0 auto 6px;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

/* el ring + sombra suave se ve "premium" y consistente */
.fx-stat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14) inset;
}

.fx-stat-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: translateZ(0);
}

/* tipografía */
.fx-stat-number {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.fx-stat-label {
  font-size: 0.98rem;
  line-height: 1.55;
  opacity: 0.85;
  max-width: 34ch;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 900px) {
  .fx-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .fx-stats-row {
    grid-template-columns: 1fr;
  }

  .fx-stat-img {
    width: 104px;
    height: 104px;
  }
}


.fx-footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fx-footer-lab {
  font-size: 13px;
  opacity: 0.75;
}

.fx-footer-lab a {
  color: white;
  text-decoration: underline;
}

.fx-hero-actions.scrollanimation.animated.fadeInUp.adr-9.adl-4.animate-visible {
    z-index: 999999;
    position: relative;
}

/* =========================================
   FIX MOBILE: Furnyx (responsive repairs)
   Add this at the END of your CSS
========================================= */

/* 1) Base safety: avoid horizontal scroll on mobile */
html, body {
  overflow-x: hidden;
}

/* 2) Header: keep readable + not floating weird on small screens */
@media (max-width: 992px) {
  .fx-header {
    position: sticky;
    top: 0;
    padding: 12px 0;
    background: rgba(255, 250, 240, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(12, 26, 20, 0.06);
  }

  .fx-header-inner {
    padding: 0 16px;
  }

  .fx-header-cta {
    padding: 10px 12px;
  }
}

/* 3) HERO: stop using negative absolute placement on mobile */
@media (max-width: 1200px) {
  /* Make hero a clean stacked layout */
  .fx-hero {
    padding: 92px 0 28px;
  }

  .fx-hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fx-hero-right {
    order: 2;
  }

  /* Turn the product into normal flow (no absolute / no negative bottom) */
  .fx-hero-product-wrap {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .fx-hero-product {
    width: min(420px, 86vw) !important;
    max-width: 100% !important;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.18));
  }

  /* Remove “reserve space” that existed only for overlap */
  .fx-green-slab {
    padding-top: 28px !important;
  }

  .fx-green-left {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
  }

  /* Family panel should be in flow (no lift) */
  .fx-family-panel {
    margin-top: 18px !important;
    grid-template-columns: 96px 1fr !important;
    gap: 14px;
  }

  .fx-family-photo {
    width: 96px;
    height: 96px;
    border-width: 6px;
  }

  .fx-family-cta {
    grid-column: 1 / -1;
  }
}

/* 4) HERO background: avoid harsh cropping on very small devices */
@media (max-width: 576px) {
  .fx-hero-bg {
    background-position: 70% center; /* keeps subject visible more often */
  }

  .fx-hero-inner {
    padding: 0 16px;
  }

  .fx-hero-title-top {
    letter-spacing: 0.12em;
  }

  .fx-hero-title-sub {
    letter-spacing: 0.06em;
  }

  .fx-checks {
    max-width: 100%;
  }
}

/* 5) Benefits slab: cards + spacing improvements on mobile */
@media (max-width: 768px) {
  .fx-green-slab {
    border-radius: 36px;
    padding: 20px !important;
  }

  .fx-feature-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .fx-photo-card img {
    height: 210px;
  }

  .fx-photo-card-caption {
    font-size: 14px;
  }
}

/* 6) Vet badge: prevent cropping/overlap issues */
@media (max-width: 992px) {
  .fx-vet-card {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 22px;
    border-radius: 36px;
  }

  .fx-vet-badge {
    width: 190px;
    height: 190px;
    margin: 0 auto;
  }

  /* Ensure avatar doesn't escape too much on small screens */
  .fx-vet-badge-inner {
    width: 160px !important;
    height: 160px !important;
    padding-top: 18px !important;
  }

  .fx-vet-avatar {
    width: 160px !important;
    height: 190px !important;
    top: -34px !important;
  }

  .fx-vet-chip {
    bottom: 34px !important;
    font-size: 13px;
  }

  .fx-vet-check {
    bottom: 8px !important;
  }
}

/* 7) Zero section: avoid giant number breaking layout on mobile */
@media (max-width: 576px) {
  .fx-zero-grid {
    padding: 18px;
    border-radius: 28px;
  }

  .fx-zero-number {
    font-size: 140px !important;
    line-height: 0.9;
    text-align: center;
  }

  .fx-zero-number span {
    font-size: 32px;
  }

  .fx-pill-row {
    justify-content: center;
  }
}

/* 8) Testimonials: ensure slider doesn't create sideways scroll */
@media (max-width: 768px) {
  .fx-testimonials {
    overflow: hidden;
  }

  .fx-testimonials .swiper {
    overflow: hidden;
  }

  .fx-testimonials .testimonial-container {
    padding: 28px 18px 18px 18px !important;
    max-width: 100% !important;
  }
}


/* MOBILE NAV */
@media (max-width: 768px) {
  /* 1) Oculta el botón/link "How to use" SOLO en móvil */
  .how-to-use,
  .nav-howto,
  a[href*="how-to-use"],
  a[href*="#how-to-use"] {
    display: none !important;
  }

  /* 2) Burger visible */
  .nav-burger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  /* 3) Links del menú colapsados por defecto */
  .nav-links {
    display: none;
  }

  /* 4) Cuando está abierto */
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 16px;
  }
}

/* Desktop: burger hidden */
.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,0.08);
}

.fx-testimonials-head{
        padding: 30px;
}


/* =========================================
   MOBILE MENU STYLES
   ========================================= */

/* Estilo del botón Burger */
.nav-burger {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(12, 26, 20, 0.1);
  color: var(--fx-green);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.nav-burger:hover {
  background: var(--fx-green);
  color: white;
}

/* Contenedor del menú móvil (desplegable) */
.fx-mobile-menu {
  position: absolute;
  top: 100%; /* Justo debajo del header */
  left: 0;
  width: 100%;
  background: rgba(251, 245, 234, 0.98); /* Color crema casi opaco */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(12, 26, 20, 0.08);
  padding: 20px 0;
  
  /* Animación de entrada */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  z-index: 49;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Clase activa para mostrar el menú */
.fx-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Links del menú móvil */
.fx-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.fx-mobile-link {
  font-family: var(--font-1);
  font-size: 18px;
  font-weight: 700;
  color: var(--fx-ink); /* Usando tu variable de color texto */
  text-decoration: none;
  padding: 10px 20px;
  width: 100%;
  text-align: center;
  transition: color 0.3s ease;
}

.fx-mobile-link:hover {
  color: var(--fx-green);
  background: rgba(255,255,255,0.5);
}

/* Ajuste Responsive para el Header */
@media (max-width: 1200px) {
  .fx-header-inner {
    padding: 0 16px;
  }
}