@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: "Plus Jakarta Sans", serif;
    background: #111111;
    overflow-x: hidden;
}

/*.container {
    max-width: 1170px;
}*/

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --primary: #ff0000;
    /* --primary-color: #93292d; */
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
    position: relative;
}

/* loader */
.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
    background: var(--primary);
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 1.04em 1.96em;
    border-radius: 50px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}

/* btn css */

/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}

/* mouse animation css  */

/* navigation css */

header {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 11;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    gap: 2.2rem;
    margin-right: 2.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 300;
    padding: 0 0;
    display: inline-block;
}

/* navigation css */

/* slider css */

.mainSlider {
    height: 999px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    /* position: absolute;
    left: 0;
    top: 0; */
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    align-items: center;
}
.homeSlider .slide-inner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000b0;
    height: 100%;
}

.slideContent {
    display: flex;
    align-items: flex-end;
    margin-bottom: 6.5rem;
}

.form-inline a.themeBtn {
    font-size: 14px;
    font-style: italic;
    font-weight: bold;
    padding: 1.3em 3.23em;
}

.form-inline {
    gap: 1.5rem;
}

.form-inline a.themeBtn + a {
    font-size: 1.2rem;
    color: var(--white);
}

.slideContent h2 {
    font-size: 14px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bolder;
    letter-spacing: 10px;
    margin: 0 0 0.5rem;
}

.slideContent h3 {
    font-size: 8.95rem;
    color: var(--white);
    font-weight: 900;
    line-height: 9.375rem;
    margin: 0;
    /* white-space: nowrap; */
}

.slideContent div {
    flex: 0 0 65%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.slideContent div + div {
    flex-direction: unset;
    align-items: flex-start;
    gap: 10px;
    flex: 0 0 35%;
}

.slideContent div + div span {
    color: var(--primary);
    font-size: 6rem;
    line-height: 0.7;
}

.slideContent div + div p {
    color: var(--white);
    margin: 0;
    line-height: 28.8px;
}

.homeSlider.swiper-container .swiper-pagination {
    width: auto;
    left: auto;
    right: 6rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    top: 0;
    bottom: 0;
    gap: 3rem;
}

.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet {
    all: unset;
    cursor: pointer;
    font-size: 1rem;
    color: var(--white);
    font-weight: 900;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
    color: var(--primary);
}

.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    left: -13px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 3px;
    height: 20px;
    background: var(--primary);
    transform: rotate(15deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    right: -13px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 3px;
    height: 20px;
    background: var(--primary);
    transform: rotate(15deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    opacity: 0;
}

.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet-active:before,
.homeSlider.swiper-container .swiper-pagination .swiper-pagination-bullet-active:after {
    opacity: 1;
}

/* slider css */

.studio-card figure {
    position: relative;
}

.studio-card figure img {
    border-radius: 28.95px;
}

.studio-card figure .overlay {
    position: absolute;
    bottom: 5rem;
    left: 3.5rem;
}

.studio-card figure .overlay h2 {
    font-size: 9.05px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 10px;
    margin: 0 0 0.9rem;
}

.studio-card figure .overlay h3 {
    font-size: 2.714375rem;
    color: var(--white);
    font-weight: 800;
    margin: 0;
    line-height: 2.7125rem;
}

.studio-card.center-card figure .overlay {
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.studio-card.center-card figure .overlay h2 {
    font-size: 9.56px;
    color: #111111;
    letter-spacing: 9.56px;
    margin: 0 0 0.6rem;
}

.studio-card.center-card figure .overlay h3 {
    font-size: 1.434375rem;
    color: #111111;
    font-weight: 900;
    line-height: 32.1px;
    margin: 0 0 1.7rem;
}

.studio-card.center-card figure .overlay .themeBtn {
    font-style: italic;
    font-weight: bold;
    padding: 0.96em 3.46em;
    font-size: 11.48px;
    background: #111111;
}

.daul-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 29px 0 0;
}

.studio-card.left-card .overlay {
    bottom: 2rem;
    left: 2.8rem;
}

.studio-card.left-card .overlay h2 {
    font-size: 9.4px;
    letter-spacing: 9.4px;
    margin: 0 0 0.8rem;
}

.studio-card.left-card .overlay h3 {
    font-size: 1.41rem;
    line-height: 1.975rem;
}

.daul-flex .studio-card.left-card + .studio-card.left-card .overlay h3 {
    font-size: 1.418125rem;
    line-height: 1.9875rem;
}

.diet-main {
    padding-top: 1rem;
    padding-bottom: 0;
}

.main-heading {
    font-size: 2.25rem;
    color: var(--white);
    text-align: center;
    font-weight: 900;
    line-height: 2.8125rem;
    margin: 0;
}

.main-heading span {
    color: var(--primary);
}

.diet-main .main-heading {
    margin: 0 0 4rem;
}

ul.weight-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #373737;
    padding: 2.82rem 0;
}

ul.weight-list li figure {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    flex: 0 0 49%;
}

ul.weight-list li figure img {
    width: 169px;
    height: 94px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 43.01px;
}

ul.weight-list li figure span {
    font-size: 3.125rem;
    color: var(--white);
    font-weight: bold;
    text-transform: capitalize;
}

ul.weight-list li p {
    font-size: 14.96px;
    margin: 0;
    color: rgb(255 255 255 / 50%);
    line-height: 25.4px;
    flex: 0 0 34%;
}

ul.weight-list li a {
    font-size: 2rem;
    color: var(--white);
}

ul.weight-list li a i {
    font-weight: 300;
    transform: rotate(45deg);
}

.unleash-main {
    /* background: url(../images/unleashbg.webp) no-repeat top center/ cover; */
    position: relative;
    padding: 6rem 0;
}

.unleash-main:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000;
    opacity: 40%;
}

.unleash-content {
    text-align: center;
}

.unleash-heading {
    font-size: 4.5rem;
    color: var(--white);
    font-weight: 800;
}

.achieve-heading {
    font-size: 3.125rem;
    color: var(--white);
    font-weight: 800;
}

.unleash-content .unleash-heading {
    margin: 0 0 0.6rem;
}

.unleash-content .achieve-heading {
    margin: 1.2rem 0 3.4rem;
}

.themeBtn.borderBtn {
    font-size: 1.125rem;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 0;
    text-transform: capitalize;
    padding: 0.9em 1.1em;
    font-family: "Oswald", serif;
    font-weight: 500;
}

.spirit-heading {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 5rem;
}

.spirit-heading .main-heading {
    text-align: left;
    flex: 0 0 44%;
}

.spirit-heading p {
    font-size: 14px;
    line-height: 26px;
    color: var(--white);
    margin: 0 0 2rem;
}

.spirit-heading div {
    flex: 0 0 48%;
}

.spirit-heading .themeBtn.borderBtn {
    padding: 0.9em 2.1em;
}

.youth-card figure img {
    border-radius: 20px;
    height: 385px;
    object-fit: cover;
}

.youth-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
}

.youth-content {
    background: #880707;
    border-radius: 20px;
    padding: 2.8rem 2.1rem;
}

.youth-content h2 {
    font-size: 1.625rem;
    color: var(--white);
    font-weight: 800;
    margin: 0 0 16px;
}

.youth-content p {
    font-size: 14px;
    color: var(--white);
    line-height: 22px;
    margin: 0 0 3rem;
}

.youth-content .themeBtn.borderBtn {
    padding: 0.5em 2.16em;
}

.youth-card.center-flex {
    flex-flow: column-reverse;
}

.youth-card.center-flex .youth-content.adult-plan {
    background: var(--white);
}

.youth-card.center-flex .youth-content.adult-plan h2,
.youth-card.center-flex .youth-content.adult-plan p {
    color: #0f0d0d;
}

.youth-card.center-flex .youth-content.adult-plan .themeBtn.borderBtn {
    border-color: var(--black);
    color: var(--black);
}

.youth-card .youth-content.personal-plan {
    background: #3c3636;
}

/* heading */
.subhead {
    font-size: 0.625rem;
    letter-spacing: 0.625rem;
    color: var(--white);
    text-transform: uppercase;
}

.mainhead {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--white);
}

/* benefits-main */
.stamp-img {
    position: absolute;
    top: -3.75rem;
    left: -3.75rem;
}

.benefits__img {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.benefits__img img {
    border-radius: 2rem;
    width: 280px;
    height: 100%;

}

.benefits__content {
    padding-left: 6rem;
}

.benefits__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.75rem;
}

.benefits__item h4 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.benefits__item h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
}

.benefits__content p {
    margin: 1.25rem 0 2.75rem;
    color: rgb(255, 255, 255, 75%);
}

/* training-main */
.training__card {
    position: relative;
    background: #1d1d1d;
    border-radius: 2rem;
    padding: 4.375rem 4.25rem;
}

.training__card--choice {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f6520a;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    display: grid;
    place-items: center;
    line-height: normal;
}

.training__card--title {
    margin-bottom: 1rem;
}

.training__card--title h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
}

.training__card--title h3 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--white);
}

.training__card--title h3 sup {
    font-size: 3rem;
}

.training__card--list {
    margin-bottom: 3.125rem;
}

.training__card--list li {
    font-size: 1rem;
    color: rgb(255, 255, 255, 75%);
    padding: 0.875rem 0.625rem;
}

.training__card--list li:not(:last-child) {
    border-bottom: 1px solid rgb(255, 255, 255, 10%);
}

.training__card--list li i {
    margin-right: 0.625rem;
}

.training__card--list li .fa-check {
    color: var(--primary);
}

.training__card--list li .fa-times {
    color: #777777;
}

/* motivation-main */
.motivation-main {
    /* background: url("../images/motivation-bg.webp") no-repeat center / cover fixed; */
    height: 600px;
    display: flex;
    align-items: center;
}

.motivation__content .mainhead {
    font-size: 6.25rem;
}

.motivation__content p {
    max-width: 500px;
    color: var(--white);
    margin: 1rem 0 2rem;
}

/* team-main */
.team__card {
    position: relative;
}

.team__card--img {
    position: relative;
}

.team__card--img img {
    border-radius: 1.875rem;
}

.team__card--img a {
    width: 44px;
    height: 44px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #ff0000;
    color: var(--white);
    display: grid;
    place-items: center;
    position: absolute;
    top: 1.75rem;
    right: 1.375rem;
}

.team__card--content {
    margin-top: 1.875rem;
}

.team__card--content h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.625rem;
}

.team__card--content h6 {
    font-size: 0.875rem;
    font-weight: 800;
    color: rgb(255, 255, 255, 75%);
    margin: 0;
}

/* review-main */
.review__wrap {
    position: relative;
}

.review__card {
    max-width: 570px;
    position: absolute;
    right: 3.375rem;
    bottom: 3.125rem;
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem 4.25rem;
}

.review__card--content h4 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 2.5rem;
}

.review__card--content p {
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 2.125rem;
}

.review__card--user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user__img img {
    width: 64px;
    height: 64px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
}

.user__content h6 {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--black);
}

.user__content p {
    font-size: 0.75rem;
    color: var(--black);
    margin: 0;
}

/* gallery-main */
.gallery-main {
    padding: 7rem 0;
    background: url("../images/gallery-bg.webp") no-repeat center / cover fixed;
}

.gallery-card--img {
    position: relative;
}

.gallery-card--img img {
    width: 100%;
    border: 1px solid var(--white);
}

.gallery-card--img a {
    font-size: 3.125rem;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-card--content h4 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    margin: 1rem 0 0;
}

/* member-main */
.member-main {
    background: url("../images/member-bg.webp") no-repeat center / cover;
}

.member__content h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.member__list {
    margin-bottom: 5.25rem;
}

.member__list li {
    display: flex;
    align-items: center;
    gap: 1.375rem;
}

.member__list li:not(:last-child) {
    margin-bottom: 2.5rem;
}

.member__list li h6 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.memder__plan:not(:last-child) {
    margin-bottom: 3.625rem;
}

.memder__plan h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.625rem;
}

.memder__plan p {
    font-size: 0.875rem;
    color: rgb(255, 255, 255, 57%);
    margin-bottom: 0.625rem;
}

.memder__plan h6 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

/* blog-main */
.blog__card {
    position: relative;
    overflow: hidden;
}

.blog__card--img img {
    border-radius: 1.875rem;
}

.blog__card--wrap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.75rem;
}

.blog__card--badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-radius: 3.125rem;
    width: max-content;
    padding: 0.5em 1.25em;
}

.blog__card--content h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.375rem;
    line-height: 1.5;
}

.blog__card--info {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.blog__card--info li i {
    color: var(--primary);
    margin-right: 0.375rem;
}

.blog__card--info li span {
    font-size: 0.75rem;
    color: #dddddd;
}

.blog__item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.blog__item:not(:last-child) {
    margin-bottom: 2.5rem;
}

.blog__item--img img {
    max-width: 130px;
    height: 130px;
    aspect-ratio: 1;
    border-radius: 2rem;
}

.blog__item--content .blog__card--info {
    gap: 2.125rem;
    margin-bottom: 1rem;
}

.blog__item--content h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

/* news-main */
.news__title .subhead {
    color: var(--primary);
}

section.news-main {
    background: #151515;
}

.news__form {
    position: relative;
    display: flex;
    align-items: center;
}

.news__form input {
    display: block;
    width: 100%;
    padding: 1em 12em 1em 2em;
    border: none;
    border-radius: 3.125rem;
    background: var(--white);
    outline: none;
}

.news__form .themeBtn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    outline: none;
    font-size: 0.875rem;
    padding: 1.375em 2.125em;
}

.news__social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
}

.news__social li a {
    width: 56px;
    aspect-ratio: 1;
    border: 1px solid var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--primary);
    display: grid;
    place-items: center;
}

/* footer */
.footer {
    padding-top: 4.375rem;
    border-top: 1px dashed rgb(255, 255, 255, 24%);
}

.footer__logo p {
    font-size: 0.875rem;
    color: rgb(255, 255, 255, 57%);
    margin: 1.875rem 0 0;
}

.footer__links h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    opacity: 50%;
    margin-bottom: 2.125rem;
}

.footer__links ul {
    columns: 2;
}

.footer__links li:not(:last-child) {
    margin-bottom: 0.625rem;
}

.footer__links li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
}

.footer__links li a i {
    transform: rotate(-40deg);
    color: var(--primary);
    margin-right: 0.625rem;
}

.footer__info li:not(:last-child) {
    margin-bottom: 2.375rem;
}

.footer__info li a {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer__info li a div h5 {
    font-size: 1rem;
    font-weight: 500;
    color: rgb(244, 244, 244, 50%);
    margin: 0;
}

.footer__info li a div h5 span {
    color: var(--white);
}

.copyright {
    border-top: 1px dashed rgb(255, 255, 255, 24%);
    padding: 1rem 0;
    margin-top: 4.375rem;
}

.copyright p {
    color: var(--white);
}

/* inner-pages */
.padd-y {
    padding: 5rem 0;
}

.inner-banner {
    height: 540px;
}

.innerbanner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
}

.inner-banner__content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 1rem;
    text-align: center;
}

.inner-banner__content ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.inner-banner__content li a,
.inner-banner__content li span {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--white);
    text-transform: capitalize;
}

.inner-banner__content li span,
.inner-banner__content li:last-child a {
    color: var(--primary);
}

.ideal-main {
    background: var(--primary);
}

.ideal__content h4 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
}

.ideal__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ideal__item h3 {
    font-size: 9.375rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.ideal__item h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    text-transform: capitalize;
    margin-bottom: 0;
    text-align: center;
}

.testimonials__card--content p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    opacity: 70%;
    margin: 2rem 0 3.125rem;
}

.testimonials__card--user--name h5 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
    margin: 0.625rem 0 0;
}

/* leagues-tournaments */
.leagues-tournaments {
    padding-bottom: 2rem;
}

.leagues-tournaments__card {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 5rem;
}

.leagues-tournaments__card--img img {
    max-width: 75px;
    height: 75px;
    aspect-ratio: 1;
    object-fit: cover;
}

.leagues-tournaments__card--content h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.leagues-tournaments__card--content p {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgb(244, 244, 244, 57%);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.leagues-tournaments__card--content ul {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.leagues-tournaments__card--content li:not(:last-child) {
    border-right: 1px solid var(--white);
    line-height: 1;
    padding-right: 0.75rem;
}

.leagues-tournaments__card--content li a {
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--white);
    text-transform: capitalize;
}

/* training-detail */
.training-detail__img img {
    border-radius: 3.125rem;
}

.training-detail__content .mainhead {
    font-size: 3.125rem;
    text-transform: capitalize;
}

/* events-details */
.events-details__img img {
    border-radius: 2rem;
}

.events-details__main .blog__card--info {
    margin: 1.125rem 0 2rem;
}

.events-details__main .blog__card--info li:nth-of-type(1) {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.events-details__main .blog__card--info li .event-name {
    border-right: 1px solid var(--white);
    padding-right: 0.75rem;
}

.events-details__content h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.125rem;
}

.events-details__content p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
}

.events-details__quote {
    background: #151515;
    border-radius: 2rem;
    padding: 3.125rem 6rem;
    margin: 2.75rem 0;
}

.events-details__quote h5 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.75;
    color: var(--white);
    margin: 2rem 0 0;
}

/*  Icon-Sec Css Start*/
.icon-main a {
    font-size: 3rem;
    margin-bottom: 23px;
    color: var(--primary);
    display: inline-block;
}

.icon-main h5 {
    font-size: 18px;
    line-height: 25px;
    font-weight: bolder;
    color: #fff;
    margin: 0;
}

.icon-main span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    margin-top: 24px;
    color: rgb(255 255 255 / 70%);
}

/*  Icon-Sec Css End */

/* Contact-Sec Css Start  */

.contact-form h2 {
    font-size: 36px;
    text-align: center;
    color: #fff;
    line-height: 50px;
    font-weight: bolder;
    text-transform: capitalize;
    margin: 0 0 2.4rem;
}

.contact-form p {
    color: #ffffff;
    line-height: 27px;
}

.contact-form input {
    height: 68.39px;
    width: 100%;
    outline: unset !important;
    box-shadow: unset !important;
    border-radius: 50px;
    background: #ffff;
    font-size: 1rem;
    font-weight: 400;
    padding: 0 2rem;
}

.contact-form textarea {
    height: 120px;
    width: 100%;
    outline: unset !important;
    box-shadow: unset !important;
    border-radius: 24px;
    padding: 1rem 2rem;
}

.contact-form button {
    width: 400px;
    background: var(--primary);
    height: 65px;
    border: unset;
    border-radius: 50px;
    font-size: 11.81px;
    font-weight: bolder;
    color: #ffff;
    font-style: italic;
    text-transform: uppercase;
    line-height: 20px;
    margin: auto;
    display: table;
}

.contact-form {
    background: #151515;
    border-radius: 32px;
    padding: 5rem 3rem;
}

.contact-form .form-main {
    margin-bottom: 3rem;
}

iframe.map {
    filter: grayscale(100%);
}

ul.individual-list {
    margin: 2rem 0 2.5rem;
}

ul.individual-list li {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding-left: 1.7rem;
}

ul.individual-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

ul.individual-list li + li {
    margin: 1rem 0 0;
}

.crossfit-img {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    margin: 2rem 0 2rem;
}

.crossfit-img figure img {
    width: 100%;
    border-radius: 2rem;
}

.crossfit-img figure {
    width: 33.333%;
}

.tag-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3rem 0 0;
}

.tag-flex ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tag-flex ul li span {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
}

.tag-flex ul li a {
    width: 95.58px;
    height: 30.19px;
    border: 1px solid var(--primary);
    font-size: 14px;
    color: var(--white);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.tag-flex ul + a {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag-flex ul + a i {
    color: var(--primary);
    font-size: 1.3rem;
}

.related-heading {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.125rem;
}

.realted-post figure img {
    border-radius: 32px;
    width: 100%;
}

.related-postcontent ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 1.2rem;
}

.related-postcontent ul li a {
    font-size: 12px;
    color: rgb(255 255 255 / 70%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-postcontent {
    margin: 1.6rem 0 0;
}

.related-postcontent ul li a i {
    color: var(--primary);
    font-size: 1.3rem;
}

.related-postcontent h3 {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 800;
    margin: 0;
    line-height: 1.6;
}

.realted-post {
    margin: 1.5rem 0 0;
}

.coment-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0 0;
}

.coment-card figure {
    flex-shrink: 0;
}

.coment-card span {
    font-size: 14px;
    color: rgb(255 255 255 / 75%);
    font-weight: 400;
}

.coment-card h4 {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 800;
    margin: 0.5rem 0 1.3rem;
}

.coment-card p {
    line-height: 27.2px;
    color: var(--white);
    font-weight: 500;
    margin: 0 0 1.3rem;
}

.coment-card a {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

.coment-card a span {
    color: var(--primary);
    font-size: 1.2rem;
    line-height: inherit;
    font-weight: 800;
}

.leave-comment p {
    text-align: center;
    font-size: 14px;
    color: #f6520a;
    font-weight: 500;
    margin: 2.4rem 0 0;
}

.leave-comment form {
    margin: 2.5rem 0 0;
}

.leave-comment form textarea {
    width: 100%;
    height: 120px;
    border-radius: 24px;
    border: 0;
    font-weight: 500;
    padding: 1.5rem 1.5rem;
    resize: none;
    margin: 0 0 1rem;
}

.leave-comment form input {
    height: 68.39px;
    width: 100%;
    background: #ffff;
    font-size: 1rem;
    font-weight: 400;
    padding: 0 2rem;
    border: 0;
    border-radius: 50px;
    margin: 0 0 4rem;
}

.leave-comment form button {
    width: 400px;
    background: var(--primary);
    height: 65px;
    border: unset;
    border-radius: 50px;
    font-size: 11.81px;
    font-weight: bolder;
    color: #ffff;
    font-style: italic;
    text-transform: uppercase;
    line-height: 20px;
    margin: auto;
    display: table;
}

/* Contact-Sec Css End  */
/* event__filter */
.event__filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
}

.event__filter .themeBtn {
    text-transform: capitalize;
    border: 1px solid var(--primary);
    outline: none;
    padding: 0.6em 1.75em;
}

.event__filter .themeBtn.active {
    background: transparent;
}

/* .event__table */
.event__table {
    border: 1px solid #2C2C2C;
    border-radius: 1.875rem;
    background: #181818;
}

.event__table .table {
    color: var(--white);
    margin: 0;
}

.event__table .table thead th {
    font-size: 0.935rem;
    height: 82px;
}

.event__table .table th:first-child {
    width: 134px;
}

.event__table .table :is(td, th) {
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #2C2C2C;
    text-align: center;
    vertical-align: middle;
}

.event__table .table :is(thead th, tbody td):last-child {
    border-right: 0;
}

.event__table .table tbody tr:last-child :is(td, th) {
    border-bottom: 0;
}

.event__table .table tbody th {
    font-size: 0.818125rem;
    font-weight: 500;
    color: #AAAAAA;
}

.event__table .table tbody :is(td, th) {
    height: 74px;
}

.event-tag {
    background: #111111;
}

.event-tag h6 {
    font-size: 0.818125rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.65;
}

.event-tag h6 span {
    display: block;
    font-weight: 500;
    color: rgb(255, 255, 255, 70%);
}


/* Back Arrow */
.inner-banner__content h1 .back-arrow {
    color: #ffffff;
}

.inner-banner__content h1 .back-arrow:hover {
    color: #FE121A;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    font-size: 18px;
}

figure.team__card--img img {
    width: 100%;
}

figure.team__card--img {
    width: 100%;
    height: 90%;
}
