*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham-Medium';
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.5;
}
html {
    font-size: 62.5%;
}
*:hover,
*:focus {
  outline: none;
}
ol, ul {
    padding-left: unset;
}
@font-face {
    font-family: 'Gotham';
    src: url('../fonts/Gotham/Gotham-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham/Gotham-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham-Bold';
    src: url('../fonts/Gotham/Gotham-Bold.ttf') format('truetype');
}


/* Colors: */
:root {
    --background-color: #F9FAFB;
    --heading-color: #E5E7EB;
    --title-color:  #374151;
    --para-color: #6B7280;
    --primary: #68CADA;
    --secondary: #DA68C1;
    --about-title: #1F2937;
    --label-color: #111827;
}

li{
    list-style: none;
    margin-bottom: 12px;
}
a{
    text-decoration: none;
}
h1{
    font-size: 42px;
    line-height: 48px;
}
h2{
    font-size: 36px;
    color: var(--about-title);
    line-height: 44px;
}
h3{
    font-size: 28px;
    line-height: 36px;
    color: var(--about-title);
}
h4{
    font-size: 24px;
    line-height: 20px;
    letter-spacing: normal;
}
h5{
    font-size: 20px;
    line-height: 28px;
}
h6{
    font-size: 14px;
    color: var(--para-color);
    line-height: 20px;
    font-family: 'Gotham-Medium'; 
}
p{
    font-size: 16px;
    line-height: 28px;
    color: var(--para-color);
    font-family: 'Gotham';
	margin-bottom: unset;
}
h1,h2,h3,h4,h5{
    font-family: 'Gotham-Bold';
    letter-spacing: -0.2px;
}
h1,h2,h3,h4{
    margin-bottom: 16px;
}
/********** 
        pre defined classes 
**********/
.mxw-600{
    max-width: 600px;
}
.mxw-800{
    max-width: 800px;
}
.ptb-128{
    padding: 128px 0px;
}
.pb-128{
    padding-bottom: 128px;
}
.ptb-88-98{
    padding: 88px 98px;
}
.pt-88{
    padding-top: 88px;
}
.mb-56{
    margin-bottom: 56px;
}
.ptb-48-64{
    padding: 48px 64px;
}
.ptb-64{
    padding: 64px 0px;
}
.p64{
    padding: 64px;
}
.mb-64{
    margin-bottom: 64px;
}
.mt-64{
    margin-top: 64px;
}
.mb-48{
    margin-bottom: 48px;
}
.p-32{
    padding: 32px;
}
.ptb-32{
    padding: 32px 0px;
}
.pt-32{
    padding-top: 32px;
}
.ps-32{
    padding-left: 32px;
}
.mb-32{
    margin-bottom: 32px;
}
.mt-32{
    margin-top: 32px;
}
.mb-24{
    margin-bottom: 24px;
}
.mb-16{
    margin-bottom: 16px;
}
.p0{
    padding: 0;
}
.videos-box{
    position: relative;
}
.videos-box iframe{
    width: 100%;
	height: 384px;
	max-width: 528px;
}

video{
    width: 100%;
    height: auto;    
}
.br-1{
    border-right: 1px solid #E5E7EB;
    padding-right: 32px;
    margin-right: 32px;    
}

/********** header **********/
#header .navbar-brand .site-logo{
    width: 100px;
}
#header nav.navbar .navbar-nav .nav-item{
    margin-bottom: unset;
}
nav.navbar .navbar-nav .nav-item .nav-link{
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #1F2937;    
}
nav.navbar .navbar-nav .nav-item .nav-link:hover{
    color: var(--primary);
}
nav.navbar .navbar-nav .nav-item .nav-link.active{
    color: var(--primary);
}
.dropdown-item{
    font-size: 14px;
}
.dropdown-item.active{
    background-color: unset;
    color: var(--primary);
}


/********** hero **********/
section.hero{
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)), 
        url('../images/hero.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 677px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
}
.hero-content h1{
    color: #E5E7EB;
}
.hero-content p{
    font-size: 18px;
    color: #E5E7EB;
}

/********** our-fitness **********/
.tournament{
    background-color: var(--background-color);
}

/********** fitness-classes **********/

.fitness-classes .group-fitness p{
    font-size: 16px;
}
.card-fc-box{
    position: relative;
}
.card-fc {
    position: relative;
    overflow: hidden;
            max-height: 100%;
                object-fit: cover;
                width: 100%;
                height: 100%;
}
.card-fc img{
    /* position: relative;
    overflow: hidden; */
    max-height: 100%;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 1));
    pointer-events: none; /* Allow interactions with underlying content */
    z-index: 1;
}
.card-fc-text{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: max-content;
}
.fitness-classes h3,.fitness-classes .group-fitness p{
    color: #FFF;
}

/********** transform-workplace **********/
.transform-workplace{
    background-image: url(../images/trusted-companies/cw2.jfif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.transform-workplace-box{
    background-color: #FFFFFF;    
}
.tc-card{
    width: 20%;
}
.trust-img{
    background-color: var(--background-color);
}
.pb-32{
    padding-bottom: 32px;
}

.owl-1 div.owl-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}
.owl-carousel button.owl-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FFFFFF;
}
.owl-carousel button.owl-dot.active{
    background-color: var(--primary);
    color: var(--primary);
}
/********** group-fitness **********/
.group-fitness{
    background-color: #111827;
    background-color: #000;
}
.btn.btn-schedule{
    font-size: 16px;
    color: #FFF;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: var(--primary);
    transition: ease-in-out .4s;
}
a.btn.btn-schedule:hover {
    transform: scale(1.05);
}
.btn.btn-schedule.two{
    color: var(--primary);
    background-color: #FFFFFF;
    border-color: var(--primary);
}
.group-fitness-bg{
    background: linear-gradient(rgba(104, 202, 218, 0.7), rgba(104, 202, 218, 0.7)), url('../images/workplace45645.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/********** we-are-evolve **********/
.we-are-evolve{
    background: var(--background-color);
}
.trusted-by h6{
    color: #FFFFFF;
    font-family: 'Gotham';
    margin-bottom: 32px;
}
.evolve-counter .stat-content h2{
    margin-bottom: 0px;
}
/********** ready-to-evolve **********/
.ready-to-evolve{
    background: linear-gradient(rgba(104, 202, 218, 0.7), rgba(104, 202, 218, 0.7)), url('../images/our-corporate-bg.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}
.ready-to-evolve-content{
    background: rgba(255, 255, 255, 1);
    text-align: center;
}
.ready-to-evolve .ready-to-evolve-content h3{
    font-family: 'Gotham-Bold';
}
.ready-to-evolve .ready-to-evolve-content p{
    font-size: 14px;
    color: var(--para-color);
    line-height: 20px;
}


/********** Counter **********/
.stats-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stat-card {
    background-color: white;
    border-radius: 8px;
    max-width: 280px;
	width: 280px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0px 2px 6px 0px rgba(16, 24, 40, 0.06);
}
.stat-icon{
    margin-right: 20px;
}
.evolve-counter h6{
    font-family: 'Gotham';
}


/********** site-footer **********/
.bor-top{
    border-top: 1px solid rgba(229, 231, 235, 1);
}
.site-footer .footer-title{
    margin-bottom: 16px;
    color: var(--about-title);
    font-weight: 600;
    text-transform: uppercase;
}
.site-footer ul li a h6{
    color: var(--para-color);
    margin-bottom: unset;
}
.site-footer ul li a h6:hover{
    color: var(--primary);
}
.site-footer p {
    font-size: 14px;
}
.footer-menu ul li a h6{
    font-family: 'Gotham-Medium';
}
.footer-menu ul li h6{
    font-family: 'Gotham';
}
.footer-menu ul li a h6:hover{
    color: var(--primary);
}
/********** SPORTS EVENT MANAGEMENT **********/
.banner{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    max-height: 536px;
}
.my-breadcrumb{
    padding-bottom: 100px;
}
.my-breadcrumb nav ol li a{
    font-size: 14px;
    font-family: 'Gotham';
    color: rgba(229, 231, 235, 1);
}
.my-breadcrumb .breadcrumb-item.active{
    font-family: 'Gotham';
    color: rgba(104, 202, 218, 1);

}
.my-breadcrumb .breadcrumb-item+.breadcrumb-item::before{
    color: rgba(209, 213, 219, 1);
}
.banner h1{
    color: var(--heading-color);
    font-family: 'Gotham-Bold';
}
.banner p{
    color: var(--heading-color);
}

/********** quote **********/
section.quote{
    background-color: var(--background-color);
}
.quote h4{
    margin: 24px 0px;
    line-height: 32px;
    font-family: 'Gotham-Medium';
}
.quote h5{
    font-size: 18px;
    color: var(--title-color);
}
.quote h6{
    font-size: 14px;
    color: var(--para-color);
}


/********** KEY SKILLS DEVELOPMENT **********/
.gallery .card{
    border: none;
    border-radius: 6px;
}
.gallery .card-body{
    padding: 32px 0px 0px;
}
.gallery .card-body p{
    font-size: 14px;
    line-height: 20px;
    /* display: -webkit-box; */
    /* text-align: justify ; */
    -webkit-line-clamp: 3; /* number of lines to show */
    -webkit-box-orient: vertical;
    /* overflow: hidden; */
    text-overflow: ellipsis;
}
#our-team-gallery .card-img-box{
    width: 176px;
    height: 176px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.1);    
    margin: auto;
}
#our-team-gallery .card-img-box img:hover{
    transition: ease-in-out 1s;
    transform: scale(1.30);
}

#our-team-gallery .card-body h5{
    font-size: 18px;
    font-family: 'Gotham-Medium';
}
.team-pop1{
    display: flex;
    align-items: center;
    gap: 32px;
    text-align: left;    
}
.t-pop-img{
    max-width: 160px;
    max-height: 160px;
    border-radius: 6px;
    overflow: hidden;
}
.t-pop-content h4{
    margin-bottom: 8px;
}
.team-pop2{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.team-pop-area{
    background-color: var(--background-color);
    border-radius: 6px;
    text-align: left;
    width: 320px;
    max-width: 320px;
}
.team-pop-area h6{
    color: var(--about-title);
    font-family: 'Gotham-Medium';
}
.team-pop-area ul li{
    color: var(--para-color);
    list-style: disc;
    
}
.team-pop-area ul li h6{
    color: var(--para-color);
    font-family: 'Gotham';
}

/********** TEAM BUILDING ACTIVITIES **********/
.filter-gallery .nav{
    justify-content: center;
    gap: 8px;
}
.filter-gallery .nav-tabs {
    border-bottom: none;
}
.filter-gallery .nav-tabs .nav-link{
    font-size: 14px;
    font-family: 'Gotham';
    color: var(--primary);
    padding: 8px 16px;
    border: 1px solid var(--primary);
    border-radius: 4px;
}
 .filter-gallery .nav-tabs .nav-link.active{
    color: #FFFFFF;
    background: var(--primary);
} 
 #filter-location .nav-tabs .nav-link.active {
     color: inherit;
     background: transparent;
 }

 #filter-location .nav-tabs .nav-link.active:after {
     position: relative;
     right: 0px;
     content: '\2713';
     padding-left: 5px;
     font-weight: bold;
 }
.filter-gallery .nav-tabs .nav-link.find{
    color: var(--secondary);
    border-color: var(--secondary);
}
.filter-gallery .nav-tabs .nav-link.find.active{
    background-color: var(--secondary);
    color: #FFFFFF;
}

/********** OUR LOCATION **********/
.find-your-tab{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--para-color);
}
.find-your-tab .btn-find{
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 16px;
    background-color: #68CADA40;
}
.find-your-tab .btn-find.find{
    background: #DA68C140;
}
#our-locations .card-img-box{
    max-height: 160px;
    height: 160px;
    box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.1);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
}
#our-locations .card-img-box img:hover{
    transition: ease-in-out 1s;
    transform: scale(1.30);
}

#our-locations .card.btn{
    padding: 0;
    text-align: left;
}
.evole-map #map {
    margin:0 auto;
    width: 100%;
    max-height: 635px;
}

/********** MODEL **********/
#our-locations .modal-dialog {
    max-width: 800px;
    margin: 1.75rem auto;
}
#our-locations .loc-model-body p{
    color: #000000;
    margin-bottom: 40px;
}
.ofs-h6{    
    color: #1F2937;
    margin-bottom: 16px;
}

/********** CAREERS **********/
.career-boxx .career-icon{
    width: 58px;
    height: 58px;
}
.career-card-box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.career-card{
    max-width: 280px;
}
.career-boxx .career-card-title{
    font-size: 18px;
}

/********** CONTACT US **********/
.contact-boxx h5{
    margin-bottom: 8px;
}
.contact-boxx h6{
    margin-bottom: 16px;
    font-family: 'Gotham';
}
.contact-boxx p{
    font-weight: 600;
}
/********** FORM **********/
.log-label{
    margin-bottom: 8px;
}
.log-input input{
    background-color: #FFFFFF;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    width: 100%;
}
.log-input input::placeholder, input[type="date"]{
    color: #9CA3AF;
    font-size: 14px;
    font-family: 'Gotham';
    height: 42px;
}
.log-group-box{
    display: flex;
    gap: 22px;
}
#text-area{
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    width: 100%;
    min-height: 116px;
}

/********** JOIN A CLASS **********/
.days-box{
    background-color: var(--background-color);
}
.days-pic{
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    max-width: 96px;
    max-height: 96px;
    overflow: hidden;
}
.days-dates{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* justify-content: space-between; */
}
.days-title{
    font-size: 32px;
    color: var(--about-title);
    font-family: 'Gotham-Bold';
}
.days-pic-text h3{
    margin-bottom: 8px;
}
.days-pic-text h6 span{
    font-size: 14px;
}
.days-pic-text h6 span img{
    width: 12px;
    height: 12px;
}
.class-schedule p{
    font-family: 'Gotham';
}
.dates-available{
    font-size: 12px;
    color: var(--about-title);
    margin-right: 10px;
}
.dates-available-days{
    display: flex;
    gap: 8px;
}
.d-a-day{
    font-size: 12px;
    color: var(--para-color);
    background: rgba(104, 202, 218, 0.25);
    padding: 8px 12px;
    border-radius: 16px;
}
/* MODEL */
#staticBackdrop-801 .modal-content{
    border: none;
    border-radius: 8px;
    box-shadow: 0px 6px 15px -2px #10182814;
}
#staticBackdrop-801 p{
    font-size: 12px;
}
#staticBackdrop-801 .sp h2{
    margin-bottom: 0px;
    padding-left:4px;
}

/********** SINGLE PASS PAYMENT **********/
.single-payment, .contact-form{
    background-color: var(--background-color);
}
#book-and-pay label{
    font-size: 14px;
    color: var(--label-color);
}
.cursr-pointer{
    cursor: pointer;
}
.color-primary{
    color: var(--primary);
    font-family: 'Gotham';
}
.text-black{
    color: #000000;
}

.qar-50{
    margin-bottom: 43px;
}
.qar-50 h3 {
    font-weight: 600;
}
input#read-carefully{
    width: 24px;
    height: 24px;
    margin-right: 13px;
}
.class-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.class-option {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    gap: 12px;
}
.class-label {
    display: flex;
    flex-direction: column;
}
span.date{
    font-size: 14px;
}
span.time{
    font-size: 12px;
    color: var(--para-color);
    font-family: 'Gotham';
}
.payment-information .btn.btn-schedule{
    margin-top: 0px;
}
ul.terms-ul li{
    list-style: disc;
    color: var(--para-color);
}
.slow-flow-box{
    background-color: #FFFFFF;
    text-align: left;
}
.slow-flow-box-right-img{
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
}
.next-step h5{
    font-family: 'Gotham-Medium';
}
.next-step ul{
    margin-left: 20px;
}
.next-step ul li{
    list-style: disc;
    color: var(--para-color);
    margin-bottom: 0px;
}

/* Country-Flags */
.select-box {
    position: relative;
}
input[type="tel"] {
    font-size: 14px;
    font-family: 'Gotham';
    border: none;
    outline: none;
}
.select-box input#c-code {
    width: 50px;
    padding: 1rem 0 1rem .6rem;
}
.select-box input#c-code::placeholder{
    color: var(--about-title);
}
.select-box input#c-input{
    width: 100%;
}

.selected-option {
    display: flex;
    align-items: center;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background-color: #FFFFFF;
}
.selected-option strong{
    display: none;
}
.selected-option .country-side{
    position: relative;
    padding: 8px 30px 8px 12px;
    text-align: center;
    cursor: pointer;
    background-color: #F3F4F6;
    border-right: 1px solid #E5E7EB;
}
.selected-option .country-side::after{
    position: absolute;
    content: "";
    right: .8rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: .8rem;
    height: .8rem;
    border-right: .12rem solid #4B5563;
    border-bottom: .12rem solid #4B5563;
    transition: .2s;
}
.selected-option .country-side.active::after{
    transform: translateY(-50%) rotate(225deg);
}
.select-box .options {
    position: absolute;
    top: 4rem;
    width: 100%;
    background-color: #fff;
    border-radius: .5rem;
    display: none;
    border: 1px solid #ddd;
}
.select-box .options.active {
    display: block;
}
.select-box .options::before {
    position: absolute;
    content: "";
    left: 1rem;
    top: -1.2rem;
    width: 0;
    height: 0;
    border: .6rem solid transparent;
    border-bottom-color: var(--primary);
}
input.search-box {
    background-color: var(--primary);
    color: #fff;
    border-radius: .5rem .5rem 0 0;
    padding: 1.4rem 1rem;
    width: 100%;
    border: none;
}
.select-box ol {
    list-style: none;
    max-height: 23rem;
    overflow: overlay;
}
.select-box ol::-webkit-scrollbar {
    width: 0.6rem;
}
.select-box ol::-webkit-scrollbar-thumb {
    width: 0.4rem;
    height: 3rem;
    background-color: #ccc;
    border-radius: .4rem;
}
.select-box ol li {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.select-box ol li.hide {
    display: none;
}
.select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #eee;
}
.select-box ol li:hover {
    background-color: lightcyan;
}
.select-box ol li .country-name {
    margin-left: .4rem;
}



/********** FITNESS TRAINING **********/
.type-of-ftns-title{
    font-size: 28px;
}
#fitness-training-gallery .card-body,#fitness-training-gallery2 .card-body{
    padding: 16px 0px 0px 0px;
}
#fitness-training-gallery .card .card-img-box,#fitness-training-gallery2 .card .card-img-box{
    max-height: 160px;
    height: 160px;
    border-radius: 6px;
    box-shadow: 0px 20px 40px -8px rgba(16, 24, 40, 0.1);
    overflow: hidden;
}

.card-img-box img.img-fluid {
    object-fit: cover;
    width: 100%;
    object-position: center;
    height: 100%;
}

#fitness-training-gallery .card img:hover,#fitness-training-gallery2 .card img:hover{
    transition: ease-in-out 1s;
    transform: scale(1.30);
}
#fitness-training-gallery .card h5,#fitness-training-gallery2 .card h5{
    font-size: 18px;
    font-family: 'Gotham-Medium';
}
#fitness-training-gallery .card p,#fitness-training-gallery2 .card p{
    font-size: 16px;
}

.loc-model-img {
    max-width: 300px;
    max-height: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
.loc-model-img img{
    height: 100%;
}

.location-card .card-img-box img {
    height: 100%;
    object-fit: cover;
}

span.read-more-toggle {
    font-size: 12px;
    cursor: pointer;
}

/**** terms-and-conditions ****/
h2.heading{
    font-size: 40px;
    color: var(--about-title);
    line-height: 48px;
}
h5.title-para{
    font-family: 'Gotham-Medium';
}
.text-justify{
    text-align: justify;
}
.pri-pol a{
	color: var(--primary);
	text-decoration : underline;
}

/**** Workplace Nutrition ****/
.work-nut{
    background-color: var(--background-color);
}
.me-32{
    margin-right: 32px;
}
.mb-46{
    margin-bottom: 46px;
}
.work-nut .my-breadcrumb{
    padding-bottom: unset;
}
.work-nut .breadcrumb{
    margin-bottom: unset;
}
.work-nut .breadcrumb-item{
    display: flex;
    align-items: center;
    margin-bottom: unset;
}
.work-nut .breadcrumb-item a{
    font-size: 14px;
    line-height: 16px;
    color: var(--title-color);
}
.work-nut .breadcrumb-item a::before{
    float: left;
    padding-right: 8px;
    color: #D1D5DB;
    content: '\003C';
}
.objt-txt{
    color: var(--about-title);
    font-family: 'Gotham-Medium';
}
h5.card-title{
    color: var(--about-title);
}

/**** Swimming ****/
.tournament .videos-box img{
    /*max-height: 396px;*/
	height: 100%;
    width: 100%;
    object-fit: cover;
}


.cardd-img{
    width: 100%;
    height: 308px;
    border-radius: 6px;
    overflow: hidden;
}
.cardd-img .img-fluid{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.loc-model-img{
    border-radius: 6px;
    overflow: hidden;
    max-width: 345px;
    max-height: 272px;
    margin-left: auto;
    margin-right: auto;
}
.gallery .card.btn{
    text-align: left;
    padding: unset;
}
.gallery .modal .loc-model-body h4{
    line-height: 32px;
}


/* Sports Therapy Services */
.st-section .videos-box{
    height: 350px;
    width: 100%;
    overflow: hidden;
}
.st-section .videos-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.st-section.tournament ul{
    padding-left: 2rem;
}
.st-section.tournament ul li{
    list-style: disc;
}
.tournament .videos-box img.bg-fit{
    object-fit: contain;
}
.st-section.tournament h3{
    margin-bottom: 4px;
}
.st-section.tournament h6,.st-section.tournament ul li{
    font-family: 'Gotham';
}
.tournament .videos-box img {
    background-color: #000000;
}
.st-section.ready-to-evolve{
    background: linear-gradient(rgba(104, 202, 218, 0.7), rgba(104, 202, 218, 0.7)), url('../images/sports-therapy/st-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* company Services */
.banner.company-services-page{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/company-services/corporate-services-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.company-services-page .group-fitness-bg{
    background-image: url('../images/company-services/sports-event-management-01.jpg');
}
.company-services-page .card-fc{
    height: 380px;
}
.company-services-page .card-fc img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.company-services-page .card-fc-text{
    width: 100%;
    text-align: center;
}


/* For Company */
.banner.for-companies-page{
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/for-company/fc-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.make-difference .videos-box{
    padding-right: 70px;
}
.team-for-companies .card{
    border: none;
}
.team-for-companies .card-body{
    padding: 0;
}
.team-for-companies .team-img{
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0px auto 32px auto;
}
.team-for-companies .team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
	object-position: top;
}
.team-for-companies .card-title{
    font-family: 'Gotham-Medium';
}
.team-for-companies span.read-more-toggle{
    color: var(--primary);
}
.bg-color{
    background-color: var(--background-color);
}