* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.nav-open {
    overflow: hidden;
}

/* ///////////
Inter
////////// */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    /* font-weight: 900; */
    font-style: normal;
    font-display: swap;
}

/* ///////////
Plus Jakarta Sans
////////// */

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../fonts/Plus_Jakarta_Sans/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    /* font-weight: 900; */
    font-style: normal;
    font-display: swap;
}

/* ///////////
Tomorrow
////////// */

@font-face {
    font-family: 'Tomorrow';
    src: url('../fonts/Tomorrow/Tomorrow-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tomorrow';
    src: url('../fonts/Tomorrow/Tomorrow-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* ///////////
Creato Display
////////// */

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display/CREATODISPLAY-REGULAR.woff2') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display/CREATODISPLAY-MEDIUM.woff2') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display/CREATODISPLAY-BOLD.woff2') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display/CREATODISPLAY-EXTRABOLD.woff2') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Creato Display';
    src: url('../fonts/creato-display/CREATODISPLAY-BLACK.woff2') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

img {
    display: flex;
    width: 100%;
    height: auto;
}

video {
    width: 100%;
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--black-color);
}

body {
    font-family: "Inter";
    background: var(--black-color);
}

:root {
    --body-color: #0B0B0B;
    --black-color: #000;
    --theme-color: #50B43E;
    --white: #fff;
}

/* ///////////
Heading
////////// */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
    font-family: 'Tomorrow';
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
}

h1 {
    font-size: 60px;
    font-weight: 400;
    line-height: 74px;
}

h2 {
    font-size: 50px;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: -2px;
    text-transform: capitalize;
}

p {
    color: var(--white);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.container {
    max-width: 1420px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
}

header {
    padding: 37px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.head_wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.logo {
    width: 165px;
    display: flex;
}

.logo a {
    width: 100%;
}

.nav_menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 50px;
}

.nav_menu ul li.active a {
    color: var(--theme-color);
    font-weight: 700;
}

#typing::after {
    content: "|";
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.nav_menu ul li a {
    color: var(--white);
    font-family: "Creato Display";
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav_menu ul li a:hover::after {
    width: 100%;
}
.nav_menu ul li.active a::after {
    width: 100%;
}
.hero--sec::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 333px;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
}
.nav_menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0%;
    background: var(--theme-color);
    transition: all ease .4s;
}

.cta_btn {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    display: flex;
    font-family: 'Inter';
    padding: 13px 32px;
    background: var(--theme-color);
    position: relative;
    clip-path: polygon(10% 0,
            100% 0,
            100% 70%,
            90% 100%,
            0 100%,
            0 30%);
    border: solid 1px transparent;
    transition: all ease .4s;
}

.cta_btn * {
    transition: all ease .4s;
}

.cta_btn:hover {
    clip-path: polygon(0 0,
            90% 0,
            100% 30%,
            100% 100%,
            10% 100%,
            0 70%);
    background: #1b7f09;

    span {
        transform: translateY(-100%);
    }
}

.cta_btn.mob_only {
    display: none;
}

.cta_texts {
    display: flex;
    flex-direction: column;
    max-height: 21px;
    overflow: hidden;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham2 .top {
    stroke-dasharray: 40 121;
}

.ham2 .bottom {
    stroke-dasharray: 40 121;
}

.ham2.active .top {
    stroke-dashoffset: -102px;
}

.ham2.active .bottom {
    stroke-dashoffset: -102px;
}

.custom-hamburger {
    display: none;
    width: 60px;
    position: relative;
    z-index: 3;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .5s;
}

.loader_img {
    width: 200px;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.hero--sec {
    min-height: 985px;
    background: url(../images/banner-shadow.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 85px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.hero_bg_video::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--black-color);
    opacity: 0.7;
    width: 100%;
    height: 100%;
    /* z-index: -1; */
}

.hero_bg_video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero_bg_video video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero_content {
    text-align: center;
}

.hero_top h2 {
    font-family: 'Inter' !important;
    font-size: 100px;
    font-weight: 200;
    line-height: 90px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #8C8C8C 0%, #141414 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero_top h2:last-child {
    margin-bottom: 0;
}

.hero_head h1 {
    color: var(--theme-color);
    font-size: 170px;
    font-weight: 700;
    line-height: 170px;
    position: relative;
    z-index: 3;
}

.hero_head h1::after {
    content: "Fitness Fana";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    filter: blur(30px);
    z-index: -1;
}

.hero_crl {
    width: 25px;
    height: 25px;
    border-radius: 25px;
    opacity: 0.9723;
    background: rgba(235, 235, 235, 0.20);
    position: absolute;
    right: -2px;
    top: auto;
    bottom: -2px;
}

.hero_crl::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: #50B43E;
    margin: auto;
    border-radius: 100px;
    animation: blinking-dot-ft 2.5s ease-in-out 1s infinite;
}

@keyframes blinking-dot-ft {
    0% {
        -moz-box-shadow: 0 0 0 0 var(--theme-color);
        box-shadow: 0 0 0 0 var(--theme-color);
    }

    70% {
        -moz-box-shadow: 0 0 0 7px rgba(1, 85, 221, 0);
        box-shadow: 0 0 0 7px rgba(1, 85, 221, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(1, 85, 221, 0);
        box-shadow: 0 0 0 0 rgba(1, 85, 221, 0);
    }
}

/* .hero_bullet_point::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 21px;
    height: 21px;
    background: #50b43e;
    border-radius: 100px;
    border: solid 8px rgb(223 218 218 / 52%);
} */

.hero_bullet_left {
    position: absolute;
    top: 357px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 313px;
}

.hero_bullet_right {
    position: absolute;
    top: 210px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 300px;
}

.hero_bullet_right .hero_bullet_point {
    transform: rotateY(180deg);
}

.hero_bullet_point {
    position: relative;
}


.tabby--sec {
    background: var(--theme-color);
    padding: 30px 0;
}

.tabby_wrapp h3 {
    text-transform: uppercase;
    font-size: 30px;
}

.tabby_wrapp p {
    font-size: 18px;
    text-transform: capitalize;
}

.tabby_logo {
    width: 150px;
}

.tabby_wrapp {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}


/* Booking Form */
.booking--sec {
    padding: 32px 0;
    background: var(--body-color);
}

.booking--sec .container {
    max-width: 1548px;
}

.booking_wrap {
    display: flex;
    gap: 52px;
    align-items: center;
    justify-content: space-between;
}

.booking_left {
    width: 25%;
}

/* .process_form {
    padding-left: 38px;
    border-left: solid 1px #B7B7B7;
} */

.process_form_wrap {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.process_form_block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
}

.process_form_block button {
    outline: none;
    transition: all ease .4s;
    cursor: pointer;
    border: none;
    padding: 17px 35px;
    font-family: 'Inter';
}

.process_form_block label {
    color: var(--white);
    font-family: "Creato Display";
    font-size: 15px;
    font-weight: 400;
    line-height: 14px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.process_form_block select,
.process_form_block input {
    width: 263px;
    height: 59px;
    border-radius: 3px;
    border: 1px solid #4A4A4A;
    background: #141414;
    padding: 5px 20px;
    outline: none;
    transition: all ease .4s;
    color: #585858;
    font-family: "Creato Display";
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    -webkit-appearance: none;
}

.process_form_block select {
    background-image: url('../icons/drop-arrow.svg');
    background-position: 94%;
    background-repeat: no-repeat;
    background-size: 12px;
}

.process_form_block input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.process_form_date {
    position: relative;
}

.date_ico {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: max-content;
    width: 20px;
    pointer-events: none;
}

.process_form_block input:focus {
    box-shadow: -1px 0px 15px 1px #5a9efd6e;
}

.booking_left h2 span {
    color: var(--theme-color);
}

.booking_left h2 {
    font-size: 45px;
    margin-bottom: 3px;
}

.booking_left p {
    font-size: 23px;
    line-height: 34px;
    text-transform: capitalize;
}

/* About Us */

.about--sec {
    padding: 100px 0;
}

.about_img {
    width: 50%;
}

.about_head h2 {
    font-size: 45px;
}

.about_head p {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.about_wrap {
    display: flex;
    gap: 54px;
}

.about_right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    gap: 16px;
    /* justify-content: space-between; */
}

.about_right .cta_btn {
    margin-top: auto;
}

.about_info p {
    margin-bottom: 18px;
}

/* Meet Point */

.meet_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 54px;
}

.meet_head_right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cta_btn.wo-bg {
    position: relative;
    background: transparent;
    clip-path: none !important;
    border-color: var(--white);
}

.cta_btn.wo-bg:hover {
    background: var(--white);
    color: var(--black-color);
}

/* .cta_btn.wo-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #fff;

    clip-path: polygon(8% 0,
            100% 0,
            100% 70%,
            92% 100%,
            0 100%,
            0 35%);
} */
.cta_btn.wo-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 10px;
    background: #000000;
    border-bottom: solid 1px white;
    transform: rotate(317deg) translate(-3px, -7px);
}

.cta_btn.wo-bg::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 19px;
    height: 10px;
    background: #000000;
    border-top: solid 1px white;
    transform: rotate(317deg) translate(3px, 7px);
}

.meet_wrap {
    display: flex;
    gap: 28px;
    margin-bottom: 20px;
}

.meet_wrap:nth-child(even) {
    flex-direction: row-reverse;
}

.meet_wrap:last-child {
    margin-bottom: 0;
}

.meet_card {
    width: 36%;
    position: relative;
}

.meet_card:hover {
    .meet_img img {
        scale: 1.1;
    }

    .meet_ico {
        rotate: 360deg;
    }
}

.meet_card.large {
    width: 68%;
}

.meet_img img {
    transition: all ease .6s;
}

.meet_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.meet_img img {
    height: 100%;
    object-fit: cover;
}

.meet_ico {
    width: 45px;
    margin-bottom: 10px;
    transition: all ease .6s;
}

.meet_info {
    position: absolute;
    left: 0;
    bottom: 45px;
    width: 100%;
    padding: 0 28px;
}

.meet_info h3 {
    font-family: Inter;
    font-size: 33px;
    font-weight: 900;
    line-height: 46px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

/* Weeks */

.weeks--sec {
    padding: 70px 0 94px;
    background: var(--body-color);
}

.meet--sec {
    padding-bottom: 100px;
}

.weeks_head {
    text-align: center;
    margin-bottom: 30px;
}

.weeks_head h2 {
    margin-bottom: 20px;
}

.weeks_head p {
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
}

.weeks_wrapper {
    display: flex;
    gap: 30px;
}

.weeks_card {
    width: 100%;
    padding: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    /* border-radius: 10px; */
    margin-bottom: 33px;
}

.week_info {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.week_info::after {
    content: "";
    display: flex;
    width: 206px;
    height: 1px;
    background: #535353;
}

.week_info h3 {
    font-size: 30px;
    line-height: 25px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.weeks_card:nth-child(even)::before {
    animation-name: spin-1;
}

.weeks_card::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg,
            rgba(153, 153, 153, 0.00) 0%,
            #50B43E 50%,
            rgba(153, 153, 153, 0.00) 50%,
            #50B43E 75%,
            rgba(153, 153, 153, 0.00) 100%);
    animation: spin 8s linear infinite;
    z-index: 0;
    opacity: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-1 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.weeks_card img {
    position: relative;
    z-index: 3;
    /* border-radius: 10px; */
}



/* .weeks_card::after {
    content: "";
    background: linear-gradient(45deg, #50b43e 0%, transparent 38%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    scale: 1;
    opacity: 0;
} */

@keyframes shiner {
    0% {
        opacity: 0;
        background: linear-gradient(45deg, #50b43e 0%, transparent 38%);
    }

    50% {
        opacity: 1;
        background: linear-gradient(45deg, #50b43e 70%, transparent 38%);
    }

    100% {
        opacity: 0;
        background: linear-gradient(45deg, #50b43e 0%, transparent 38%);
    }
}

/* Testi */
.testimonial--sec {
    padding: 5px 0 100px;
    position: relative;
    overflow-x: hidden;
}

.testi_main {
    margin-top: 54px;
}

.testi_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testi_slides {
    /* padding-left: 121px; */
    position: relative;
    z-index: 2;
    border-radius: 5px;
    border: 1px solid #727171;
    padding: 61px 61px 51px;
}

/* .testi_head {
    margin-bottom: 28px;
} */

.testi_head h2 {
    margin-bottom: 17px;
    font-size: 30px;
    font-weight: 700;
    line-height: 34px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testi_head p {
    color: var(--theme-color);
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

.testi_info {
    max-width: 880px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.testi_info p {
    font-size: 25px;
    font-weight: 500;
    line-height: 40px;
    text-transform: capitalize;
}

.testi_card {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    background: var(--black-color);
}

.testi_img {
    width: 48%;
}

.testi_nav {
    display: flex;
    gap: 15px;
    /* margin-top: -60px; */
    align-items: center;
    justify-content: center;
}

.testi_slides .swiper-button-prev,
.testi_slides .swiper-button-next {
    margin: 0;
    position: static;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(253, 253, 253, 0.00);
    background: #17171C;
}

.testi_slides .swiper-button-next::after {
    content: normal;
}

.testi_slides .swiper-button-prev::after {
    content: normal;
}

.testi_slides .swiper-button-prev img,
.testi_slides .swiper-button-next img {
    width: 19px;
}

.testi_slides .swiper-button-next img {
    rotate: 180deg;
}

.testi_text {
    position: static;
    width: 2012px;
    margin: 0 auto;
    transition: all ease .2s;
}

/* Results */

.result_head {
    text-align: center;
    margin-bottom: 30px;
}

.result_head h2 {
    margin-bottom: 20px;
}

.result_head p {
    text-transform: capitalize;
}

.result_video {
    display: flex;
    height: 630px;
    position: relative;
}

.result_video::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: .3;
}

.result_video:hover {
    .play-pause_btn {
        opacity: 0.85;
    }
}

.result_video video {
    object-fit: cover;
}

.play-pause_btn {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    margin: auto;
    width: 86px;
    height: 86px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    opacity: 0.85;
    background: var(--white);
    cursor: pointer;
    opacity: 0;
    transition: all ease .5s;
}

.play-pause_btn img {
    width: 20px;
}

.result_nav {
    display: none;
    gap: 15px;
    /* margin-top: -60px; */
    align-items: center;
    justify-content: center;
}

.results_slides {
    position: relative;
}

.results_slides .swiper-button-prev,
.results_slides .swiper-button-next {
    margin: 0;
    position: absolute;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(253, 253, 253, 0.00);
    background: #17171C;
}

.results_slides .swiper-button-next::after {
    content: normal;
}

.results_slides .swiper-button-prev::after {
    content: normal;
}

.results_slides .swiper-button-prev img,
.results_slides .swiper-button-next img {
    width: 19px;
}

.results_slides .swiper-button-next img {
    rotate: 180deg;
}

/* Built */

.built--sec {
    padding: 100px 0 0;
}

.built_head {
    text-align: center;
    margin-bottom: 50px;
}

.built_head h2 {
    margin-bottom: 20px;
}

.built_head p {
    text-transform: capitalize;
}

.built_wrap {
    display: flex;
}

.build_card {
    width: 34%;
    overflow: hidden;
}

.build_card * {
    transition: all ease .4s;
}

.build_card:hover {
    img {
        scale: 1.1;
    }
}

.built_loop {
    padding: 65px 0;
    overflow: hidden;
}

.built_loop_wrap {
    display: flex;
    align-items: center;
    margin-left: -230px;
    gap: 60px;
    animation: looper 50s linear .4s infinite;
}

@keyframes looper {
    from {
        transform: translateX(-0%);
    }

    to {
        transform: translateX(-140%);
    }
}

.built_loop h2 {
    font-family: 'Inter';
    font-size: 130px;
    font-weight: 700;
    line-height: 110px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #585858 0%, #151515 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: max-content;
}


/* Footer */
footer {
    padding: 81px 0 0;
    background: var(--body-color);
}

.footer_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer_logo {
    width: 126px;
    display: flex;
    margin-bottom: 18px;
}

.footer_block.logo_part p {
    font-size: 18px;
    line-height: 27px;
    max-width: 385px;
    margin-bottom: 33px;
}

.ft_socials {
    display: flex;
    gap: 15px;
}

.ft_social_ico {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 45px;
    background: #28282C;
    transition: all ease .4s;
}

.ft_social_ico:hover {
    background: var(--theme-color);

    img {
        filter: invert(1);
    }
}

.ft_social_ico img {
    transition: all ease .4s;
    width: 21px;
}

.ft_nav ul li a {
    color: var(--white);
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    position: relative;
    text-transform: capitalize;
}

.ft_nav ul li a:hover::after {
    width: 100%;
}

.ft_nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0%;
    background: var(--theme-color);
    transition: all ease .4s;
}

.ft_nav ul li {
    list-style: none;
    position: relative;
    padding-left: 22px;
    margin-bottom: 15px;
}

.ft_nav ul li:last-child {
    margin-bottom: 0;
}

.footer_block h3 {
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 32px;
}

.ft_nav ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: var(--theme-color);
    animation: blinking-dot-ft 2.5s ease-in-out 1s infinite;
}

.ft_cnt_list_wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.ft_cnt_list_wrap:last-child {
    margin-bottom: 0;
}

.ft_cnt_ico {
    width: 46px;
}

.ft_hour_item {
    margin-bottom: 25px;
}

.ft_hour_item:last-child {
    margin-bottom: 0;
}

.ft_hour_item h4 {
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 5px;
}

.ft_hour_item p {
    color: var(--theme-color);
    font-family: 'Inter';
    font-size: 18px;
    line-height: 27px;
}

.copyright-center {
    text-align: center;
    padding: 21px 0;
    border-top: 1px solid rgb(80 180 62 / 15%);
}

.copyright-center p {
    color: #808080;
    text-transform: capitalize;
}


/* @About Page */

.hero--sec.inner {
    min-height: 873px;
    background-size: cover;
    background-position: center center;
}

.hero--sec.inner.about {
    background-image: url('../images/about-banner.jpg');
}

.hero--sec.inner.about .hero_head h1::after {
    content: "About Us";
}

/* Journey */
.journey--sec {
    background: var(--body-color);
    padding: 100px 0;
}

.journal_head {
    text-align: center;
    margin-bottom: 40px;
}

.journal_head h2 {
    margin-bottom: 20px;
}

.journal_head p {
    font-size: 18px;
    line-height: 28px;
    text-transform: capitalize;
}

.journey_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.journey_card {
    width: 100%;
    position: relative;
    z-index: 2;
}

.journey_info {
    padding: 45px 25px 45px 31px;
}

.journey_info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #17171C;
    z-index: -1;
}

.journey_ico {
    width: 63px;
    margin-bottom: 23px;
}

.journey_info h3 {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.journey_info p {
    font-size: 18px;
    line-height: 28px;
}

.weeks--sec.inner {
    background: var(--black-color);
}

.built--sec.inner {
    padding: 0;
}


/* @Services Page */

.hero--sec.inner.services .hero_head h1::after {
    content: "Services";
}

.hero--sec.inner.services {
    background-image: url('../images/services-banner.png');
}

/* Tabs */
.boxing--sec {
    padding: 100px 0 25px;
}

.boxing_wrapper {
    display: flex;
    gap: 30px;
}

.boxing_left {
    width: 420px;
    max-width: 420px;
    position: sticky !important;
    top: 20px;
    left: 0;
    height: max-content;
}

.boxing_right {
    width: 67%;
}

.tab_top {
    margin-bottom: 55px;
}

.tab_top h3 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.tab_thumb_img {
    width: 100%;
    margin-bottom: 50px;
}

.tab_top p {
    margin-bottom: 20px;
}

.tab_top p:last-child {
    margin-bottom: 0;
}

.tab_item_left {
    display: flex;
    align-items: center;
    gap: 23px;
}

.boxing_tab_menu_item:hover {
    h3 {
        color: var(--black-color);
    }

    p {
        opacity: 1;
    }
}

/* .boxing_tabs_menu_wrap {
    position: relative;
    z-index: 3;
} */
.boxing_tabs_menu_wrap {
    position: relative;
    margin-bottom: 50px;
}

.tab_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: var(--theme-color);
    border-radius: 6px;
    transition: all .35s ease;
    z-index: 0;
    opacity: 0;
}

.boxing_tab_menu_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px 13px;
    transition: all ease .4s;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.boxing_tab_menu_item * {
    transition: all ease .4s;
}

.boxing_tab_menu_item p {
    font-weight: 700;
    line-height: 24px;
    color: var(--black-color);
}


.boxing_tab_menu_item h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -2px;
}

.tab_arrow {
    width: 14px;
}

.boxing_tab_item {
    display: none;
}

/* .boxing_tab_menu_item.active {
    background: var(--theme-color);
} */

.boxing_tab_item:first-child {
    display: block;
}

.tab_benifits h3 {
    font-size: 25px;
    line-height: 25px;
    letter-spacing: -1px;
}

.tab_beni_head {
    margin-bottom: 50px;
}

.tab_benifits {
    margin-bottom: 50px;
}

.benifit_wrapper {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #252525;
}

.benifit_wrap {
    display: flex;
    border-bottom: 1px solid #252525;
}

.benifit_wrap:last-child {
    border-bottom: none;
}

.benifit_card {
    padding: 46px 58px 28px 0;
    width: 50%;
    border-right: solid 1px #252525;
}

.benifit_card:last-child {
    padding: 46px 55px 28px 30px;
    border-color: transparent;
}

.benifit_icon {
    width: 48px;
    margin-bottom: 11px;
}

.benifit_info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.benifit_info p {
    line-height: 20px;
}

.tab_train_img {
    margin-bottom: 50px;
}

.tab_train_info h3 {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -2px;
    margin-bottom: 30px;
    max-width: 650px;
}

.tab_train_info p {
    margin-bottom: 20px;
}

.tab_train_info p:last-child {
    margin-bottom: 0;
}

.boxing_card {
    border-radius: 16px;
    background: #060606;
    height: 575px;
    padding: 35px 17px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.box_card_img {
    position: absolute;
    right: 0;
    width: 240px;
    bottom: 0;
}

.box_card_top h4 {
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFF;
    font-size: 49px;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.box_card_btm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 5px;
    position: relative;
    z-index: 2;
}

.box_card_top h3 {
    color: var(--theme-color);
    font-size: 49px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.box_card_btm h5 {
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero--sec.inner.contact .hero_head h1::after {
    content: "Contact Us";
}

.hero--sec.inner.contact {
    background-image: url('../images/contact-banner.png');
}

/* @Contact Page */
.contact--sec {
    padding: 100px 0 35px;
}

.contact_wrapper {
    display: flex;
    border-radius: 15px;
    background: #0B0B0B;
    box-shadow: 0 0 25.8px 0 rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* gap: 30px; */
}

.contact_head {
    margin-bottom: 55px;
}

.contact_left {
    width: 49%;
    position: relative;
}

.contact_sc_ico {
    width: 50px;
}

.contact_sc_info h4 {
    font-family: 'Inter';
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 7px;
}

.contact_social_item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact_social {
    display: flex;
    padding: 30px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    position: absolute;
    bottom: 30px;
    width: 84%;
    left: 0;
    right: 0;
    margin: auto;
}

.contact_form_wrap {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact_head h3 {
    font-size: 35px;
    line-height: 50px;
    letter-spacing: -2px;
    margin-bottom: 10px;
}

.contact_head p span {
    font-weight: 600;
}

.contact_form_block select,
.contact_form_block input {
    width: 100%;
    height: 56px;
    border-radius: 5px;
    background: #191919;
    outline: none;
    border: none;
    padding: 10px 15px;
    color: #747474;
    font-family: "Creato Display";
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
}

.contact_form_block label {
    color: var(--white);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 5px;
}

.contact_right {
    width: 51%;
    padding: 60px 30px 67px;
}

.contact_form_block {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contact_form_wrap.msg .contact_form_block {
    width: 100%;
}

.contact_form_block textarea {
    width: 100%;
    height: 174px;
    border-radius: 5px;
    background: #191919;
    outline: none;
    border: none;
    resize: none;
    padding: 13px 15px;
    color: #747474;
    font-family: "Creato Display";
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
}

.contact_form_btn {
    margin-top: 15px;
}

.contact_form_btn button {
    cursor: pointer;
}

@media screen and (max-width: 1600px) {
    .hero--sec {
        min-height: 860px;
    }

    .logo {
        width: 124px;
    }

    .booking_left h2 {
        font-size: 35px;
    }

    .process_form_block select,
    .process_form_block input {
        width: 238px;
        height: 55px;
    }

    .booking_left p {
        font-size: 20px;
        line-height: 28px;
        text-transform: capitalize;
    }

    .hero_top h2 {
        font-size: 80px;
        line-height: 70px;
    }

    .hero_head h1 {
        font-size: 120px;
        line-height: 130px;
    }

    .hero_bullet_left {
        top: 267px;
    }

    .process_form_wrap {
        gap: 14px;
    }

    .result_video {
        height: 550px;
    }
}

@media screen and (max-width: 1440px) {
    .booking_wrap {
        gap: 20px;
    }

    .booking_left p {
        font-size: 16px;
    }

    .booking_left {
        width: 21%;
    }

    .journey_info h3 {
        font-size: 26px;
        line-height: 28px;
        margin-bottom: 6px;
    }

    .journey_ico {
        width: 40px;
    }

    .journey_img {
        height: 100%;

        * {
            height: 100%;
            object-fit: cover;
        }
    }

    .box_card_top h4,
    .box_card_top h3 {
        font-size: 42px;
        line-height: 50px;
    }

    .boxing_left {
        max-width: 370px;
    }

    .boxing_tab_menu_item {
        padding: 14px 20px 14px 13px;
    }

    .tab_top h3 {
        font-size: 34px;
        line-height: 46px;
    }

    .contact_img {
        height: 100%;

        img {
            height: 100%;
            object-fit: cover;
        }
    }

    .contact_social {
        flex-direction: column;
    }

    .contact_head {
        margin-bottom: 25px;
    }

    .contact_right {
        padding: 40px 30px 47px;
    }

    .contact_form_block select,
    .contact_form_block input {
        height: 46px;
        padding: 10px 15px;
        font-size: 14px;
    }

    .contact_form_block textarea {
        height: 114px;
    }
}

@media screen and (max-width: 1100px) {
    h2 {
        font-size: 42px;
        line-height: 48px;
    }

    .nav_menu ul li a {
        font-size: 16px;
    }

    .nav_menu ul {
        gap: 24px;
    }

    .hero_bullet_point {
        width: 90px;
    }

    .hero_bullet_left {
        top: 217px;
        gap: 200px;
    }

    .hero_head h1 {
        font-size: 90px;
        line-height: 130px;
    }

    .hero_bullet_right {
        top: 180px;
        gap: 200px;
    }

    .hero_top h2 {
        font-size: 60px;
        line-height: 50px;
        background: linear-gradient(180deg, #ffffff 0%, #50b43e 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .booking_wrap {
        flex-wrap: wrap;
        gap: 30px;
    }

    .booking_left {
        width: 100%;
        text-align: center;
    }

    .about_wrap {
        gap: 30px;
    }

    .about_info p {
        margin-bottom: 15px;
    }

    .about_head h2 {
        font-size: 38px;
    }

    .about_img img {
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .meet_wrap {
        gap: 20px;
    }

    .meet_ico {
        width: 40px;
    }

    .meet_info {
        bottom: 25px;
        padding: 0 20px;
    }

    .meet_info h3 {
        font-size: 22px;
        font-weight: 700;
        line-height: 34px;
    }

    .testi_slides {
        border: 1px solid #72717159;
    }

    .testi_text {
        width: 100%;
    }

    .testi_info p {
        font-size: 22px;
        line-height: 36px;
    }

    .built_loop h2 {
        font-size: 100px;
        line-height: 90px;
    }

    .footer_block.logo_part p {
        font-size: 14px;
        line-height: 24px;
        max-width: 288px;
    }

    .footer_block h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .ft_cnt_ico {
        width: 40px;
    }

    /* @About Page */

    .journey_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .boxing_left {
        max-width: 100%;
        width: 100%;
        position: static !important;
    }

    .boxing_wrapper {
        flex-wrap: wrap;
    }

    .boxing_right {
        width: 100%;
    }

    .box_card_img {
        width: 42%;
    }

    .boxing_card {
        padding: 35px 40px 40px;
    }
}

@media screen and (max-width: 992px) {
    header {
        padding: 20px 0;
        position: fixed;
        transition: all ease .6s;
        backdrop-filter: blur(20px);
    }

    header.active {
        background: #0000009c;
    }

    .container {
        padding: 0 30px;
    }

    h2 {
        font-size: 38px;
        line-height: 44px;
    }

    .logo {
        position: relative;
        z-index: 99;
    }

    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        min-height: 100vh;
        width: 100%;
        background: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transform: translateX(-100%);
        transition: all ease .5s;
    }

    .navigation.open {
        transform: translateX(0%);
    }

    .nav_menu ul {
        flex-direction: column;
    }

    .nav_menu ul li a {
        font-size: 32px;
        line-height: 42px;
    }

    .custom-hamburger {
        display: flex;
    }

    .cta_btn.desk_only {
        display: none;
    }

    .cta_btn.mob_only {
        display: flex;
    }

    .process_form_wrap {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero--sec {
        min-height: 100vh;
    }

    .hero_head {
        height: auto;
    }

    .process_form_block select,
    .process_form_block input {
        width: 100%;
    }

    .process_form_block button {
        width: max-content;
    }

    .process_form_block {
        width: 47%;
    }

    .about_wrap {
        flex-wrap: wrap;
    }

    .about_img {
        width: 100%;
    }

    .about_right {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .meet_wrap {
        gap: 10px;
        margin-bottom: 10px;
    }

    .meet_info h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .meet_head_left {
        width: 42%;
    }

    .meet_ico {
        width: 30px;
    }

    .week_info h3 {
        font-size: 22px;
    }

    .testi_slides {
        padding: 40px 30px;
    }

    .testi_info {
        max-width: 100%;
    }

    .footer_wrapper {
        align-items: center;
        justify-content: center;
        gap: 40px;
        flex-direction: column;
    }

    .ft_socials {
        justify-content: center;
    }

    .ft_nav ul {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .ft_nav ul li {
        margin-bottom: 0;
    }

    .ft_contact_list {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .ft_cnt_list_wrap {
        margin-bottom: 0;
    }

    .footer_block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .footer_block.logo_part p {
        text-align: center;
        max-width: 80%;
    }

    .ft_hours_list {
        display: flex;
        align-items: flex-start;
        gap: 40px;
        text-align: center;
        width: 100%;
    }

    .ft_hour_item {
        margin-bottom: 25px;
        width: 33%;
    }

    /* @About Page */

    .journey_wrapper {
        gap: 15px;
    }

    .journal_head br {
        display: none;
    }

    .boxing_left {
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
    }

    .contact_wrapper {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .contact_left {
        width: 100%;
    }

    .contact_right {
        width: 100%;
    }

    .contact_img {
        max-height: 430px;
    }
    
    .tabby_wrapp
 {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 20px;
}
}

@media screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 20px;
    }

    .nav_menu ul li a {
        font-size: 28px;
        line-height: 34px;
    }

    h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .hero--sec {
        background-size: cover;
    }

    .hero_top h2 {
        font-size: 30px;
        line-height: 26px;
    }

    .logo {
        width: 94px;
    }

    .hero_bullet_point {
        width: 70px;
    }

    .hero_head h1 {
        font-size: 47px;
        line-height: 60px;
    }

    .booking_left h2 {
        font-size: 32px;
    }

    .process_form_wrap {
        gap: 30px;
    }

    .process_form_date,
    .process_form_block {
        width: 100%;
    }

    .process_form_block button {
        margin-left: auto;
    }

    .about_head h2 {
        font-size: 32px;
    }

    .meet_wrap {
        flex-direction: column !important;
    }

    .meet_card,
    .meet_card.large {
        width: 100%;
    }

    .meet_head_left {
        width: 100%;
    }

    .meet_head {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .meet_info h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .meet--sec {
        padding-bottom: 50px;
    }

    .journal_head h2,
    .built_head h2,
    .result_head h2,
    .weeks_head h2 {
        margin-bottom: 8px;
    }

    .journal_head p,
    .weeks_head p {
        font-size: 16px;
        line-height: 24px;
    }

    .built_head p br,
    .result_head p br,
    .weeks_head p br {
        display: none;
    }

    .weeks--sec {
        padding: 50px 0;
    }

    .week_info h3 {
        font-size: 20px;
    }

    .weeks_card {
        margin-bottom: 15px;
    }

    .testimonial--sec {
        padding-bottom: 50px;
    }

    .testi_info p {
        font-size: 16px;
        line-height: 28px;
    }

    .testi_head h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .results_slides .swiper-slide-active .results_card {
        scale: 1;
    }

    .results_card {
        scale: .95;
        transition: all ease .5s;
    }

    .built--sec {
        padding: 50px 0 0;
    }

    .built_head {
        margin-bottom: 30px;
    }

    .built_wrap {
        flex-direction: column;
    }

    .build_card {
        width: 100%;
    }

    .built_loop {
        padding: 15px 0;
    }

    .built_loop_wrap {
        margin-left: -100px;
        gap: 30px;
    }

    .built_loop h2 {
        font-size: 50px;
        line-height: 60px;
    }

    footer {
        padding: 50px 0 0;
    }

    .footer_wrapper {
        gap: 50px;
    }

    .ft_hours_list,
    .ft_contact_list,
    .ft_nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .ft_contact_list {
        align-items: flex-start;
    }

    .ft_hour_item {
        width: 100%;
        margin: 0;
    }

    .footer_block h3 {
        font-size: 20px;
        font-weight: 500;
    }

    .footer_block.logo_part p {
        max-width: 100%;
    }

    .ft_hour_item p {
        font-size: 16px;
        line-height: 24px;
    }

    .ft_hour_item h4 {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 24px;
    }

    .copyright-center {
        padding: 12px 0;
    }

    .copyright-center p {
        font-size: 14px;
    }

    .result_nav {
        display: flex;
    }

    .journey--sec {
        padding: 50px 0;
    }

    .journey_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .boxing_tab_menu_item {
        padding: 14px 20px 14px 13px;
        min-width: 250px;
        background: #ffffff1f;
    }

    .boxing_tab_menu_item h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .tab_bg {
        display: none !important;
    }

    .boxing_tabs_menu_wrap {
        margin-bottom: 0;
        display: flex;
        gap: 10px;
        overflow-x: scroll;
    }

    .boxing_tab_menu_item p {
        color: var(--white);
    }

    .boxing_tab_menu_item:hover {
        h3 {
            color: var(--white);
        }
    }

    .tab_arrow {
        filter: invert(1);
    }

    .boxing_tab_menu_item.active {
        background: var(--theme-color);

        h3,
        p {
            color: var(--black-color);
        }

        .tab_arrow {
            filter: invert(0);
        }
    }

    .benifit_wrapper {
        border-top: none;
    }

    .benifit_wrap {
        flex-wrap: wrap;
        border: none;
    }

    .benifit_card {
        width: 100%;
        border: none;
        padding: 30px 20px !important;
        border-bottom: solid 1px rgba(128, 128, 128, 0.27) !important;
    }

    .boxing_card {
        padding: 35px 20px 40px;
        height: max-content;
        gap: 110px;
    }

    .box_card_top h4,
    .box_card_top h3 {
        font-size: 32px;
        line-height: 38px;
    }

    .tab_train_info h3,
    .tab_top h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .contact_form_block {
        width: 100%;
    }

    .contact_form_wrap {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .contact_right {
        padding: 30px 20px 37px;
    }

    .contact_sc_ico {
        width: 40px;
    }

    .contact_social {
        width: 95%;
        background: #00000094;
    }

    .contact_sc_info h4 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 2px;
    }
}