/* google font link */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


.font-inter {
    font-family: "Inter", sans-serif;
    background: rgba(0, 0, 0, 1);
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(230, 83, 60, 1);
    color: #fff;
}

:focus-visible {
    outline: 2px solid rgba(230, 83, 60, 1);
    outline-offset: 3px;
}

/* shared style start */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* text color */
.text-color {
    color: white;
}

.container {
    width: 100%;
    max-width: 66.25rem;
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 1.5rem);
}

img {
    display: block;
}

/* primary color orange */
.primary-color {
    color: rgba(230, 83, 60, 1);
}

/* gray p tag color */
.gray-color {
    color: rgba(255, 255, 255, 0.5);
}

/* info text p tag */
.info-details {
    color: rgba(255, 255, 255, 0.5);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 400;
    line-height: 24px;
}

.display-flex {
    display: flex;
}

.primary-btn {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fdf0ef;
    background-color: rgba(230, 83, 60, 1);
    border-radius: 42px;
    padding: 16px 46px;
    border: none;
    cursor: pointer;
}

.section-heading {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.875rem;
    background: linear-gradient(90deg,
            #ff6b6b,
            #ffcb6bdd,
            #ff6b6bf9);
    background-position: 0% center;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: section 2s linear infinite;
}

@keyframes section {
    from {
        background-position: 90% center;
    }

    to {
        background-position: 300% center;
    }
}

.teams,
.banner,
.habits,
.runs {
    margin-bottom: clamp(3rem, 6vw, 6.25rem);
}

/* shared style end */

/* ----------header style start */

/* nav area style start */
.nav-container {
    margin-top: clamp(1.125rem, 2vw, 1.5rem);
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 1);
}

.nav-container .nav-logo {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    font-style: italic;
    background: linear-gradient(90deg,
            #ff6b6b,
            #6b6bff,
            #ffffff,
            #ff6b6b);
    background-size: 200% 200%;
    background-position: 0% center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 1.8s linear infinite;

}

@keyframes shine {
    from {
        background-position: 90% center;
    }

    to {
        background-position: 300% center;
    }
}


.nav-container .menu {
    gap: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid #888888;
    border-radius: 46px;
    padding: 12.5px 5px;
}

.menu .menu-list {
    list-style: none;
}

.menu .home-menu {
    background-color: rgba(230, 83, 60, 1);
    padding: 8px 20px;
    border-radius: 46px;
}

.menu .menu-link {
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
}

.menu-icon {
    display: none;
}

/* nav area style end */

/* --banner style start---- */
.header {
    min-height: 100dvh;
}

.banner .banner-container {
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
}

.banner-container .banner-content {
    max-width: 520px;
    width: 100%;
}

.banner-content .banner-heading {
    font-size: clamp(2.25rem, 4.5vw + 0.5rem, 4.375rem);
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.main-text {
    background: linear-gradient(90deg,
            #ff6b6b,
            #ffcb6be8,
            #ff6b6b);
    background-position: 0% center;
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: section 2s linear infinite;
}


.banner-content .banner-info {
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.banner-content .white-btn {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fdf0ef;
    background-color: transparent;
    border-radius: 42px;
    padding: 14px 46px;
    border: 1px solid #fdf0ef;
    cursor: pointer;
}

/* .banner-img {
    width: clamp(16rem, 30vw, 21.875rem);
    aspect-ratio: 4 /5;
    position: relative;
    overflow: hidden;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
} */

.banner-container .banner-img {
    max-width: 350px;
    width: 100%;
    vertical-align: middle;
    position: relative;
}

.banner-container .banner-img img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;

}


/* .banner-container .banner-img img {
    width: 100%;
    height: auto;
    vertical-align: middle;
} */

.banner-img .tooltip-1 {
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 12px;
    width: 50%;
    background-color: rgba(70, 68, 68, 0.57);
    padding: 12px;
    position: absolute;
    right: -14%;
    top: 23%;
    backdrop-filter: blur(8px);
}

.count {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: white;
    font-weight: 800;
    margin-bottom: 4px;
}

.tooltip-info {
    font-size: 0.875rem;
    font-weight: 400;
    color: #b9b9b9;
}

.banner-img .tooltip-2 .ball {
    width: 40px;
    height: 40px;
    background-color: rgba(230, 83, 60, 1);
    border-radius: 50%;
}

.banner-img .tooltip-2 {
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    border-radius: 12px;
    width: 50%;
    background-color: rgba(70, 68, 68, 0.57);
    padding-block: 12px;
    padding-inline: 12px;
    gap: 15px;
    align-items: center;
    position: absolute;
    bottom: 11%;
    left: -23%;
    backdrop-filter: blur(8px);
}

.count-2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: white;
    font-weight: 800;
    margin-bottom: 4px;
}

/* --banner style end---- */
/* ----------header style end */

/* main area :start */
/* change habits section style start*/
.habits-container .habits-header {
    max-width: 670px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.625rem);
}

.habits-container .habits-img-box {
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    justify-items: center;
}

.habits-img {
    max-width: 231px;
    width: 100%;
}

.habits-container .habits-img-box img {
    border-radius: 50%;
    margin-bottom: clamp(1.375rem, 2vw, 1.875rem);
    object-fit: cover;
    margin-inline: auto;
}

.habits-container .habits-img-box h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 6px;
}

/* change habits section style start*/

/* runs area style start */
.runs-container {
    justify-content: space-between;
    align-items: center;
    background: #222222;
    border-radius: 18px;
}

.runs-container .runs-content {
    max-width: 500px;
    width: 100%;
    padding: 40px 34px;
}

.runs-content .runs-info {
    margin-bottom: 18px;
}

.runs-content .runs-btn {
    padding: 16px 70px;
}

.runs-container .runs-img {
    max-width: 500px;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    /* flex-shrink: 0; */
}

.runs-container .runs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* display: block; */
    border-radius: 18px;
}

/* runs area style end */
/* --training area style :start */
.training {
    margin-bottom: clamp(3rem, 5vw, 5.5rem);

}

.training-container .training-content {
    max-width: 670px;
    width: 100%;
    margin-bottom: clamp(2.25rem, 4vw, 3.625rem);
}

.training-content .training-info {
    color: rgba(255, 255, 255, 0.5);
}

.training-container .training-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
}

.training-box .box-1 {
    position: relative;
}

.training-box .box-1 .box1-info {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    position: absolute;
    z-index: 1;
    top: 80%;
    left: 15%;
}

.training-box .box-2 {
    position: relative;
}

.training-box .box-2 .box2-info {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    position: absolute;
    z-index: 2;
    top: 20%;
    left: 15%;
}

.training-box .box-3 {
    position: relative;
}

.training-box .box-3 .box3-info {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    position: absolute;
    z-index: 3;
    top: 70%;
    left: 10%;
}

.training-box .box-4 {
    position: relative;
}

.training-box .box-4 .box4-info {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    position: absolute;
    z-index: 4;
    top: 20%;
    left: 52%;
}

.training-box .box-5 {
    position: relative;
}

.training-box .box-5 .box5-info {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    position: absolute;
    z-index: 5;
    top: 70%;
    left: 10%;
}

.training-box .box-6 {
    position: relative;
}

.training-box .box-6 .box6-info {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 500;
    position: absolute;
    z-index: 6;
    top: 70%;
    left: 10%;
}

.training-box .box-1 {
    background-color: #06FFD2;
}

.training-box .box-2 {
    background-color: #f66467;
}

.training-box .box-3 {
    background-color: #797876;
}

.training-box .box-4 {
    background-color: #797876;
}

.training-box .box-5 {
    background-color: #53f01a;
}

.training-box .box-6 {
    background-color: #627dc2;
}

.training-box .box-2 {
    grid-column: span 2;
}

.training-box .box-4 {
    grid-column: 1/3;
}

.training-box .training-img {
    height: 220px;
}

.training-box .training-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* --training area style :end */

/* teams section style start */
.teams-container .teams-content {
    max-width: 671px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: clamp(3rem, 4.5vw, 4.875rem);
    text-align: center;
}

.teams-container .teams-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 340px);
    gap: clamp(0.875rem, 1.25vw, 1.25rem);
}

.teams-box .teams-img {
    /* max-width: 340px; */
    width: 100%;
    position: relative;
}

.teams-box .teams-img img {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
    opacity: 0.75;
}

.trainer-name {
    font-size: 1.125rem;
    font-weight: 900;
}

.teams-img .teams-card-info {
    position: absolute;
    z-index: 1;
    top: 80%;
    left: 6%;
}

/* Parent reacts to child state */
.teams-img:has(:hover) img {
    opacity: 1;
}


/* teams section style end */
/* main area :end */

/* footer area style start */
.footer {
    background-color: #1a1a1a;
}

.footer-container {
    padding-bottom: clamp(3rem, 4.5vw, 5rem);
}

.footer-about {
    justify-content: space-between;
    padding-top: clamp(2.5rem, 4vw, 3.75rem);
    padding-bottom: clamp(3rem, 4.5vw, 5rem);
    width: 50%;
}

.footer-about .footer-details {
    max-width: 440px;
    width: 100%;
}

.footer-details .details-logo {
    font-size: clamp(2.5rem, 6vw, 4.375rem);
    font-weight: 800;
    font-style: italic;
    color: rgba(230, 83, 60, 1);
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    background: linear-gradient(90deg,
            #ff6b6b,
            #6b6bff,
            #ffffff,
            #ff6b6b);
    background-size: 200% 200%;
    background-position: 0% center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 1.8s linear infinite;

}


.footer-social {
    width: 50%;
    padding-top: clamp(2.5rem, 4vw, 3.75rem);
    justify-content: space-between;
    align-items: center;
}

.footer-social h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: clamp(1.5rem, 3vw, 2.4375rem);
}

.footer-social li {
    list-style: none;
    margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.footer-social .social-link {
    text-decoration: none;
    font-size: clamp(1.125rem, 2.5vw, 1.4375rem);

}

.footer-social .about {
    margin-bottom: 0;
}

.footer .copyright {
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-align: center;
    padding-block: 2.2rem;
    border-top: 1px solid #888888;

}

/* footer area style end*/