@import url('https://fonts.googleapis.com/css2?family=Anton&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #32AB80;  
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Plus Jakarta Sans", serif;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin-bottom: 0;
    font-family: "Anton", serif;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

html, body{
    scroll-padding: 100px;
}

.preloader{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1d203a;
}

header{
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: 0.3s
}

header.active{
    /* background: #000; */
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

header .logo{
    flex: 1;
}

header .logo img{
    width: 180px;
}

header nav .close_btn{
    text-align: end;
    padding: 10px 20px;
    display: none;
}

header nav .close_btn i{
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: var(--primary-color--);
    border: 1px solid var(--primary-color--);
    font-size: 20px;
    margin-left: auto;
    border-radius: 50%;
    cursor: pointer;
}
header .menu_btn{
    margin-left: 20px;
    display: none;
}
header .menu_btn i{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--primary-color--);
    border: 1px solid var(--primary-color--);
    font-size: 20px;
    margin-left: auto;
    /* border-radius: 50%; */
    cursor: pointer;
}

header nav ul{
    display: flex;
    gap: 20px;
}

header nav ul li a{
    font-family: "Anton", serif;
    color: #fff;
    transition: 0.3s;
}

header.active nav ul li a{
    color: #000;
}

header nav ul li a:hover, header nav ul li a.active{
    color: var(--primary-color--);
}

header .right_side{
    flex: 1;
}

.join_us_btn{
    display: inline-block;
    padding: 15px 25px;
    background: var(--primary-color--);
    color: #fff;
    font-weight: 600;
    border: 1px solid var(--primary-color--);
    transition: 0.3s;
}

.join_us_btn:hover{
    /* background: none;
    color: var(--primary-color--); */
    transform: scale(1.1);
    color: #fff;
}

.join_us_border_btn{
    display: inline-block;
    padding: 15px 25px;
    background: none;
    color: var(--primary-color--);
    font-weight: 600;
    border: 1px solid var(--primary-color--);
    transition: 0.3s;
}

.join_us_border_btn:hover{
    background: var(--primary-color--);
    color: #FFF;
}

.banner{
    position: relative;
}

.banner::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.2) 100%);
}

.banner .fog_img{
    position: absolute;
    z-index: 2;
    width: 80%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.banner .fog_img img{
    mix-blend-mode: screen;
}

.banner .content{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 4%;
    width: 50%;
    transform: translateY(-50%);
}

.banner .content p{
    color: #fff;
    font-weight: 600;
}

.banner .fog_img{
    position: absolute;
}

.banner_heading p{
    font-size: 20px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 27%;
}

.banner_heading h2{
    font-size: 60px;
    color: #fff;
    margin: 10px 0;
}

.banner_heading h2 span{
    color: var(--primary-color--);
}

.px_5{
    padding-left: 4%;
    padding-right: 4%;
}

.px_5{
    padding-left: 5%;
    padding-right: 5%;
}

.ps_5{
    padding-left: 5%;
}

.about_content p{
    font-size: 18px !important;
}

.heading {
    position: relative;
    z-index: 2;
}

.heading span{
    font-size: 8vw;
    font-weight: 400;
    font-family: "Anton", serif;
    line-height: 1;
    -webkit-text-stroke: 2px var(--primary-color--);
    color: transparent;
    /* transform: translateY(22%); */
    margin-bottom: -30px;
    position: relative;
    z-index: -1;
    display: block;
    white-space: nowrap;
}

.heading span.border_white{
    -webkit-text-stroke: 1px #fff;
}

.heading h2{
    font-size: 32px;
    /* position: relative;
    z-index: 1; */
}

.quote{
    display: flex;
    gap: 5px;
}

.quote span{
    width: 10px;
    height: 25px;
    display: block;
    background: var(--primary-color--);
    transform: skew(-20deg);
}

.quote.bg_white span{
    background: #fff;
}

.counter_card{
    padding: 25px;
    background: #000;
    outline: 1px solid var(--primary-color--); /* Inner border */
    outline-offset: -10px; /* Moves border inside */
    border-radius: 20px;
    padding-left: 45%;
}

.counter_card h3{
    font-size: 16px;
    color: var(--primary-color--);
}

.counter_card h4{
    font-size: 36px;
    color: #fff;
}

.counter_img{
    transform: translateX(40%);
}

.gym_accessories_slider_bg{
    position: relative;
    background: var(--primary-color--);
}

.gym_accessories_slider_bg::before{
    content: '';
    width: 100%;
    height: calc(100% - 20px);
    border: 2px solid #fff;
    border-left: none;
    border-right: none; 
    position: absolute;
    top: 10px;
    left: 0;
}

.gym_accessories_slider h3{
    font-size: 32px;
    color: #fff;
    display: flex;
    align-items: center;
}

.gym_accessories_slider i{
    font-size: 32px;
    text-align: center;
    padding: 0 30px;
}

.gym_accessories_slider li{
    display: flex !important;
}

.experienced_card_bg{
    background: #062216;
}

.experienced_card{
    padding-right: 20px;
    padding-left: 20px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
}

.experienced_card:hover{
    background: #3CB18880;
}

.experienced_card img{
    margin-bottom: 15px;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.experienced_card h3{
    color: #fff;
    font-size: 20px;
}

.why_list ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why_list ul li{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    font-size: 18px;
}

.why_list ul li img{
    width: 50px;
    flex: 0 0 auto;
}

.why_img{
    position: relative;
}

.why_img::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    background: #0622166B;
}

.box-item {
    position: relative;
    -webkit-backface-visibility: hidden;
    /* width: 415px; */
    /* margin-bottom: 35px; */
    width: 100%;
}
  
.flip-box {
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-perspective: 1000px;
    /* transition-delay: 0.7s; */
    transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
}

.flip-box:hover{
    transform: scale(1);
    transition-delay: 0.5s;
}
  
.flip-box-front,
.flip-box-back {
    background-size: cover;
    background-position: center;
    /* border-radius: 8px; */
    /* min-height: 475px; */
    -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
  
.flip-box-front {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front, .flip-box:focus .flip-box-front {
    -ms-transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
  
.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    height: 100%;
    background: var(--primary-color--);
    box-shadow: 0px 4px 19.1px 0px var(--primary-color--);
}
  
.flip-box:hover .flip-box-back, .flip-box:focus .flip-box-back {
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
  
.flip-box .inner {
    position: absolute;
    left: 0;
    width: 100%;
    /* padding: 60px; */
    /* outline: 1px solid transparent; */
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    
    transform: translateY(0) translateZ(60px) scale(.94);
    -webkit-transform: translateY(0) translateZ(60px) scale(.94);
    -ms-transform: translateY(0) translateZ(60px) scale(.94);
    /* top: 50%; */
}

.flip-box-front .inner{
    position: relative;
    /* transform: translateY(0) translateZ(60px) scale(1);
    background-size: cover; */
}
  
.flip-box-header {
    font-size: 34px;
}


.flip-box-front .inner figure{
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.flip-box-front .inner figure::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
}

.flip-box-front .inner figure figcaption{
    position: absolute;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    z-index: 2;
}

.flip-box-front .inner figure figcaption h3{
    color: #fff;
    font-size: 24px;
    font-weight: 400;
}

.flip-box .inner h3{
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.flip-box-front .inner figure figcaption h3{
    color: #fff;
}

.flip-box .inner span{
    color: transparent;
    display: block;
    margin-bottom: 8px;
    font-size: 60px;
    font-weight: 400;
    font-family: "Anton", serif;
    line-height: 1;
    -webkit-text-stroke: 1px var(--primary-color--);
}

.flip-box .inner .content p{
    color: #fff;
    font-size: 14px;
}

.flip-box-back .inner{
    padding: 20px 20px;
    /* padding-top: 40px; */
}

.how_work_img{
    position: relative;
}

.how_work_img img{
    width: 80%;
}

.how_work_img .content{
    position: absolute;
    bottom: 25%;
    right: 0;
    width: 350px;
    background: var(--primary-color--);
    padding: 40px 20px;
}

.how_work_img .content ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how_work_img .content ul li{
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 18px;
}

.how_work_img .content ul li i{
    margin-top: 5px;
}

.how_work_list ul{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.how_work_list ul li{
    display: flex;
    gap: 10px;
    align-items: center;
}

.how_work_list ul li img{
    width: 75px;
    height: 75px;
    object-fit: contain;
    padding: 7px;
    background: #5BFFC533;
    flex: 0 0 auto;
    border-radius: 5px;
}

.how_work_list ul li p{
    font-size: 18px;
}

.video_sec{
    position: relative;
}

.video_sec .vid_play_btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.vid_play_btn{
    display: inline-block;
    /* position: relative; */
}

.vid_play_btn p{
    width: 100px;
    height: 100px;
    background: #32AB80EB;
    color: #000;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 20px;
    padding-left: 5px;
}

.vid_play_btn span{
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #32AB80EB;
    border-radius: 50%;
    z-index: -1;
    left: 0;
    top: 0;
    animation: vid_play_btn 3s infinite linear;
}

.vid_play_btn span:nth-child(2){
    animation-delay: 1s;
}

.vid_play_btn span:nth-child(3){
    animation-delay: 2s;
}

@keyframes vid_play_btn{
    0%{
        transform: scale(1);
        opacity: 1;
    }
    /* 50%{
        transform: scale(1);
    } */
    100%{
        transform: scale(2.2);
        opacity: 0;
    }
}

.testimonial_sec_bg{
    background: #062216;
    position: relative;
    z-index: 1;
}

.testimonial_sec_bg::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -2;
}

.testimonial_sec_bg .ellipse_2 , .testimonial_sec_bg .ellipse_3{
    position: absolute;
    height: 80%;
    top: 10%;
    z-index: -1;
}

.testimonial_sec_bg .ellipse_2{
    left: 0;
}

.testimonial_sec_bg .ellipse_3{
    right: 0;
}

.testimonial_slider{
    background: #32AB808C;
    position: relative;
    margin: 0 20px;
}

.testimonial_slider .slick-arrow{
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: var(--primary-color--);
    color: #fff;
    border-radius: 50%;
    border: none;
    transition: 0.3s;
    display: grid;
    place-items: center;
    top: 50%;
    transform: translateY(-50%);
}

.testimonial_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.testimonial_slider .slick-arrow:hover{
    background: #fff;
    color: var(--primary-color--);
}

.testimonial_slider .slick-arrow.slick-prev{
    left: -20px;
}

.testimonial_slider .slick-arrow.slick-next{
    right: -20px;
}

.testimonial_slider_dots .slick-dots{
    display: flex;
    gap: 5px;
    justify-content: center;
}

.testimonial_slider_dots .slick-dots button{
    width: 20px;
    height: 20px;
    border: 4px solid #fff;
    background: var(--primary-color--);
    font-size: 0;
    transition: 0.3s;
    outline: none;
}

.testimonial_slider_dots .slick-dots button:hover{
    border: 4px solid var(--primary-color--);
}

.testimonial_slider_dots .slick-dots li.slick-active button{
    border: 4px solid var(--primary-color--);
}

.testimonial_card{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px 40px
}

.testimonial_card .testimonial_img{
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.testimonial_card .testimonial_img .af_bf_img{
    width: 50%;
    padding: 10px;
    position: relative;
    z-index: 1;
}

.testimonial_card .testimonial_img .af_bf_img::before{
    content: '';
    width: 90%;
    height: 90%;
    background: #fff;
    position: absolute;
    bottom: -2%;
    z-index: -1;
}

.testimonial_card .testimonial_img .af_bf_img.before_img::before{
    left: -2%;
}

.testimonial_card .testimonial_img .af_bf_img.after_img::before{
    right: -2%;
}

.testimonial_card .content{
    width: 50%;
    padding: 30px;
}

.testimonial_card .content .stars ul{
    display: flex;
    gap: 5px;
}

.testimonial_card .content .stars ul li{
    font-size: 20px;
    color: #FFC23F;
}

.testimonial_card .content p{
    font-size: 18px;
    color: #fff;
    margin: 20px 0;
}

.testimonial_card .content .name{
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

.testimonial_card .content .name h3{
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

.testimonial_card .content .name h4{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1;
}

.enquire_now{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.enquire_now_heading h2{
    font-size: 34px;
    font-weight: 400;
}

.enquire_now_heading p{
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color--);
}

footer{
    /* background: #EFEFEF; */
    border-top: 1px dashed #D6D6D6;
}

.footer_content p{
    font-size: 12px;
}

.footer_head h2{
    font-size: 18px;
    font-weight: 400;
}

.footer_nav ul li{
    margin-bottom: 8px;
}

.footer_nav ul li a{
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.footer_nav ul li a:hover{
    color: var(--primary-color--);
}

.footer_contact{
    background: #FAFAFA;
    padding: 20px;
    border-radius: 10px;
}

.footer_contact ul li{
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.footer_contact ul li a{
    font-size: 14px;
    line-height: 1.2;
}

.footer_contact ul li a:hover{
    color: var(--primary-color--);
}

.footer_contact ul li i{
    margin-top: 2px;
    font-size: 16px;
    color: var(--primary-color--);
}

.copy_right{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.footer_content h2{
    font-size: 48px;
}

.logo_black img{
    filter: grayscale(100%) brightness(0);
    opacity: 0.23;
}

.go_up{
    position: fixed;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #FFAE00;
    color: #fff;
    background: #FFAE00;
    font-size: 24px;
    z-index: 80;
    border-radius: 50%;
    cursor: pointer;
}


.whats-app {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 20px;
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 25px;
}

.main_heading_banner{
    /* aspect-ratio: ; */
    padding: 0 4%;
    /* align-items: center; */
    display: flex;
    position: relative;
    z-index: 1;
    aspect-ratio: 10/3;
    padding-top: 4%;
}

.mb_img{
    display: none;
}

.ellipse_bg_1{
    position: relative;
}

.ellipse_bg_1 .ellipse_1{
    position: absolute;
    width: 40%;
    /* height: 80%; */
    top: 50%;
    left: 20%;
    z-index: -1;
    transform: translateY(-50%);
}

.check_box input{
    position: absolute;
    visibility: hidden;
}

.check_box{
    display: flex;
    gap: 35px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid #2E2E2E;
    cursor: pointer;
    padding-left: 10px;
    background: #111111;
    color: #FFFFFF;
}

.checkmark{
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.checkmark::before{
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color--);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.check_box input:checked ~ .checkmark::before{
    transform: scale(1);
}

.check_box input:checked ~ .checkmark{
    border: 1px solid var(--primary-color--);
}

.form_label{
    font-size: 18px;
    /* font-weight: bold; */
    color: #fff;
}

.form_label_bold{
    font-weight: bold;
}

.form_control{
    background-color: #111 !important;
    border: 1px solid #2E2E2E;
    outline: none !important;
    box-shadow: none;
    color: #fff !important;
    padding-top: 10px;
    padding-bottom: 10px;
    accent-color: #fff;
}

.form_control:focus{
    border-color: var(--primary-color--);
    outline: none;
    box-shadow: 0 0 5px var(--primary-color--);
    background-color: #111;
}

.form_control:disabled, .form_control[readonly] {
    background-color: #e9ecef00;
    opacity: 1;
    color: #ffffff7d !important;
}

.sub_new_btn{
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color--);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
}

.pt_160{
    padding-top: 160px;
}

.select2-container .select2-selection--multiple{
    min-height: 46px;
}

.select2-container--default .select2-selection--multiple{
    background: #111;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.select2-container--default .select2-search--inline .select2-search__field{
    color: #fff;
    /* margin-top: 9px; */
    padding-left: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered{
    margin-top: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background-color: #32ab80;
    border: 1px solid #062216;
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff;
}

.form_heading{
    font-size: 22px;
}

.remove_package_row{
    background: #ae3939 !important;
    border-color: #ae3939;
}

.t_heading{
    font-size: 24px;
}

.impact_card {
  border: 1px solid var(--primary-color--);
  height: 100%;
  padding: 10px 10px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact_card img{
    border-radius: 20px;
}

.impact_card p{
    color: #fff;
    /* margin-top: 10px; */
    font-size: 20px;
    text-align: center;
    font-weight: 600;
}

ul.footer_icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

ul.footer_icons li a {
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  display: grid;
  place-items: center;
  color: #000;
  border-radius: 50%;
}

.coming_soon{
    display: inline-block;
    border: 1px solid var(--primary-color--);
    background: var(--primary-color--);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
}

.owner_name{
    border: 1px solid var(--primary-color--);
    padding: 10px 20px;
    margin-bottom: 20px;
}

.owner_name p{
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color--);
}