/* FONT IMPORT */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100..900&family=Ubuntu:wght@400;500&display=swap');

/* Local Font */
@font-face {
    font-family: "Kuunari";
    src: url("../fonts/kuunari.otf");
    font-weight: 400;
}

@font-face {
    font-family: "Kuunari";
    src: url("../fonts/kuunari-bold.otf");
    font-weight: 700;
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #E8AA23;
    --secondary: #0071BD;

    /* Font Variable */
    --font-text: "Jost", sans-serif;
    --font-heading: "Ubuntu", sans-serif;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: var(--font-text);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Kuunari";
}

.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;
}


/* 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 */


/* PRELOADER */

.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(--white);
    z-index: 11113;
}

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


/* PRELOADER */


/* GLOBAL CSS */

.themeBtn {
    background-color: transparent;
    font-size: 1.25rem;
    color: var(--black);
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    padding: 0.675em 1.85em;
    border-radius: 0px;
    letter-spacing: 2px;
    line-height: normal;
}

.themeBtn.borderBtn {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--primary);
}

.heading {
    font-size: 5.625rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

.subtitle {}

/* !GLOBAL CSS */


/* NAV HEADER CSS */

header {
    z-index: 111;
    width: 100%;
    padding: 0.875rem 0;
    transition: 0.3s ease-in-out;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-nav {
    gap: 3.25rem;
    padding-right: 3.5rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: #26292B;
    font-weight: 400;
    padding: 0 0;
    display: inline-block;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

header .themeBtn.borderBtn {
    border-color: var(--secondary);
}

header .themeBtn.borderBtn:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.navbar .nav-item.drop-down {
    position: relative;
    z-index: 1;
}

.navbar .drop-down>a:after {
    content: '\f0d7';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    padding-left: 10px;
    color: var(--primary);
}

.navbar .drop-down ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: 0.3s;
}

.navbar .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .drop-down li {
    min-width: 200px;
    position: relative;
    list-style: none;
}

.navbar .drop-down ul a {
    padding: 6px 17px;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    color: #151515;
    display: block;
    text-transform: uppercase;
}

.navbar .drop-down ul a:hover {
    background: var(--primary);
    color: #fff;
}

/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 933px;
    background: url('../images/mainhero-img.webp') center center/cover no-repeat;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    background: linear-gradient(90deg, rgba(22, 21, 21, 0.79), transparent 60%);
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
}

.homeSlider .swiper-pagination {
    bottom: 3.125rem;
    width: fit-content;
    left: 16rem;
    font-size: 3rem;
    color: var(--white);
    display: flex;
    align-items: center;
}


.homeSlider .swiper-pagination-current {
    font-size: 7rem;
    color: var(--primary);
    padding-right: 2.5rem;
    width: 180px;
    display: inline-block;
}

.homeSlider .swiper-pagination-current::before,
.homeSlider .swiper-pagination-total::before {
    content: '0';
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.heroText h1 {
    margin: 0;
    color: var(--white);
    font-size: 5.625rem;
    line-height: 0.9;
    font-weight: bold;
    text-transform: uppercase;
}

.heroText h1 span {
    font-size: 9.25rem;
    display: block;
}

.heroText h5 {
    text-transform: uppercase;
    color: var(--white);
    font-size: 2.125rem;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 400;
}

.heroText h4 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.75rem;
}

.heroText h4 span {
    background-color: var(--secondary);
    text-transform: uppercase;
    padding-inline: 8px;
}

.heroText .themeBtn.borderBtn {
    color: var(--primary);
}

.heroText .themeBtn.borderBtn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* !MAIN HERO SLIDER CSS */

/* ABOUT SECTION */

.about-section {
    padding: 5.75rem 0;
}

.about-img {
    display: flex;
    gap: 1.375rem;
    position: relative;
    z-index: 1;
    padding: 2.625rem 0;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    right: 126px;
    width: 100%;
    max-width: 436px;
    height: 638px;
    background-color: #992033;
    z-index: -1;
}

.about-img figure:nth-child(1) {
    margin-top: 2.625rem;
}

.about-section .line {
    width: 68px;
    height: 1px;
    background-color: var(--black);
    display: block;
}

.about-section h4 {
    font-size: 1.375rem;
    font-family: var(--font-text);
    margin-bottom: 1.375rem;
}

.about-section p {
    font-size: 1rem;
    color: #5A5A5A;
    line-height: 1.875;
    margin-bottom: 1.75rem;
}

.about-section .themeBtn.borderBtn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* !ABOUT SECTION */

/* SERVICES SECTION */

.services-section {
    padding: 0 0 2.75rem;
}

.text {
    text-transform: uppercase;
    font-size: 12.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: -10.5rem;
    -webkit-text-stroke: 2px #ECECEC;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: -1;
}

.servicetitle {
    font-size: 3.75rem;
    text-transform: uppercase;
    background-color: #F2F2F2;
    width: fit-content;
    padding: 0.85rem 3.5rem;
    margin: 0;
    margin-top: 3rem;
}

.services-section .row:nth-child(even) .servicetitle {
    margin-left: auto;
}

.services-section figure,
.servicess-section figure {
    overflow: hidden;
    background-color: #F6F6F6;
}

.services-section figure img,
.servicess-section figure img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.services-section figure:hover img {
    opacity: 0.75 !important;
}

.services-section .btnlink {
    font-size: 3.125rem;
    color: var(--primary);
    text-transform: uppercase;
    font-family: 'Kuunari';
    font-weight: 700;
    background: linear-gradient(to bottom, transparent 10%, var(--primary) 10%);
    background-size: 100% 4px;
    background-position-y: bottom;
    background-repeat: no-repeat;
    padding: 5px 8px;
}

.services-section .btnlink:hover {
    background-size: 100% 100%;
    color: var(--white);
}

/* !SERVICES SECTION */


/* GALLERY SECTION */

.gallery-section {
    background-color: #F6F6F6;
    padding: 2.25rem 0 2.375rem;
}

.gallery-section .row {
    gap: 1.75rem 0;
    margin-top: 1.125rem;
}

.gallery-section figure {
    border-radius: 7px;
    overflow: hidden;
    border: 2px solid transparent;
}

.gallery-section figure img {
    width: 100%;
    transition: 0.5s ease;
}

.gallery-section figure:hover {
    border-color: var(--white);
}

.gallery-section figure:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.gallery-section .themeBtn {
    background-color: var(--black);
    color: var(--white);
}

.gallery-section .themeBtn:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* !GALLERY SECTION */

/* CTA SECTION */

.cta-section {
    padding: 5rem 0 7.75rem;
    background: url('../images/cta-bg.webp') center center/cover no-repeat fixed;
    text-align: center;
    overflow: hidden;
}

.cta-section .obj {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.cta-section .themeBtn {
    background-color: var(--primary);
    color: var(--white);
}

.cta-section .themeBtn:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* !CTA SECTION */

/* TESTIMONIAL SECTION */

.testimonial-section {
    background-color: #FBFBFB;
    padding: 3.25rem 0 4.375rem;
}

.review-card {
    border: 2px solid #EBEBEB;
    border-radius: 8px;
    padding: 2.25rem 2.625rem;
    background-color: var(--white);
    margin-bottom: 2.5rem;
}

.review-card .rating {
    display: flex;
    gap: 6px;
    color: #EEAC20;
    margin-bottom: 1.25rem;
}

.review-card p {
    font-size: 1.125rem;
    color: #0E252A;
    line-height: 1.66;
    max-width: 310px;
    margin: 0;
}

.review-card .user-detail {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    margin-top: 1.5rem;
}

.reviewSlider .swiper-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 1.75rem;
}

.reviewSlider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #100F0C;
    opacity: 0.25;
    margin: 0 !important;
    transition: 0.5s ease;
}

.reviewSlider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* !TESTIMONIAL SECTION */

/* CONTACT SECTION */

.contact-section {
    padding: 0;
    background-color: #992033;
    overflow: hidden;
}

.contactform .row {
    gap: 1.125rem 0;
}

.contactform .form-control {
    border-radius: 7px;
    padding: 1.125rem;
    border: 1px solid var(--white);
    resize: none;
}

.contactform .form-control:focus {
    border-color: var(--black);
    box-shadow: none;
}

.contactform .form-control::placeholder {
    font-size: 1.125rem;
    color: #8B93A8;
}

.contactform input.form-control {
    height: 68px;
}

.contact-img {
    text-align: right;
    margin-right: -24rem;
}

.contactform .themeBtn {
    background-color: var(--black);
    color: var(--white);
}

.contactform .themeBtn:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* !CONTACT SECTION */


/* INSTA SECTION */

.insta-section {
    padding: 1.5rem 0;
}

.insta-section .instaSlider {
    margin-right: -6.875rem;
}

.insta-section .instaSlider figure {
    position: relative;
    background-color: var(--black);
    overflow: hidden;
}

.insta-section .instaSlider figure img {
    transition: 0.5s ease;
}

.insta-section .instaSlider figure:hover img {
    transform: scale(1.1);
    opacity: 0.75;
}

.insta-section .instaSlider figure a {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    color: var(--white);
}

/* !INSTA SECTION */

/* FOOTER */

footer {
    background-color: var(--black);
    padding-top: 5.5rem;
}

footer h3 {
    font-size: 1.875rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

footer ul a {
    font-size: 1.125rem;
    color: var(--white);
}

footer ul a:hover {
    color: var(--primary);
}

.quicklist li+li {
    margin-top: 5px;
}

.copyRight {
    margin-top: 6rem;
    padding: 2.625rem 0;
    border-top: 1px solid rgba(209, 209, 209, 0.49);
}

.copyRight p {
    margin: 0;
    color: var(--white);
    font-size: 1.375rem;
}

.social-link {
    display: flex;
    gap: 5.5rem;
}

.social-link a {
    font-size: 1.5rem;
}

.calFoter li+li {
    margin-top: 2.5rem;
}

.calFoter li a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.calFoter li a i {
    width: 1.5rem;
    color: var(--primary);
}

.calFoter li:last-child a span {
    text-decoration: underline !important;
}

/* !FOOTER */

/* innerpages Start */

.innerBan .overlay {
    position: absolute;
    text-align: left;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.innerBan h2 {
    font-size: 90px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: bold;
}

.innerBan {
    position: relative;
}

.aboutinner {
    padding-top: 0;
}

.gallery-section.inner.gallery {
    background: #fff;
    padding: 6rem 0;
}

.testimonial-section.inner.reviews {
    background: #fff;
    padding: 7rem 0;
}

.testimonial-section.inner.reviews .review-card {
    box-shadow: 1.3px 3.78px 68px rgb(231 231 231 / 35%);
}


.memberBox {
    background: #fff;
    padding: 2rem 3rem;
    margin: 0;
    box-shadow: 0 10px 22px rgb(0 0 0 / 6%);
    text-align: center;
    border-radius: 10px;
    border: 1px solid transparent;
}

.memberBox h2 {
    font-size: 40px;
    margin: 0;
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #E2E5EC;
}

.memberBox h5 {
    line-height: 1.5;
    color: #E7A922;
    font-size: 50px;
    font-weight: 500;
    text-align: center;
}

.memberBox h5:before {
    content: '';
    position: absolute;
    left: 0;
    background: var(--theme-color);
    width: 172.82px;
    height: 2.95px;
    bottom: 0;
}

.memberBox ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Jost';
}


.memberBox ul li+li {
    margin-top: 0.8rem;
}

.memberBox ul {
    margin: 0 0 2rem;
}



.memberBox .themeBtn {
    border: 2px solid #0071BD;
    background: #EBEBEB;
    color: #26292B;
    font-size: 20px;
}

.swiper-slide.swiper-slide-active .memberBox {
    transform: scale(1.2);
    border-color: #992033;
}

.packegslider {
    padding: 6rem 25px 12rem;
}

.panel.atheleticSec {
    padding-bottom: 0rem;
}

.swiper-slide.swiper-slide-active .memberBox h5 {
    color: #992033;
    font-size: 60px;
}

.swiper-slide.swiper-slide-active .memberBox .themeBtn {
    background: #992033;
    border-color: #992033;
    color: #fff;
}