*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s linear;
    outline: none;
}
*::selection{
    background-color: #0000FF;
    color: #fff;
}
body{
    font-family: 'Roboto Condensed', sans-serif;
}
/* Start Header */
header{
    
    width:  100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(bg2.jpeg);
    background-position: center;
    background-size: cover;
}
nav{
    width: 100%;
    padding: 2% 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
nav .links{
    padding-left: 0;
}
nav .links li{
    display: inline-block;
    margin-left: 1rem;
    font-size: 1.5rem;
}
nav .links li a{
    color: #fff;
}
.links .active{
    color: #0000FF;
}
nav .links li a:hover{
    color: #0000FF;
}
header .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
header .content h1{
    font-size: 8rem;
    text-transform: uppercase;
    color: #fff;
}
.btn{
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    border: 0.3rem solid #0000ff;
    color: #0000FF;
    margin-top: 1.8rem;
    cursor: pointer;
    border-radius: 0.5rem;
    font-size: 2rem;
}
.btn:hover{
    background-color: #fff;
    color: #000;
}
nav .open, .close{
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    display: none;
}
@media (max-width:850px){
    nav .links{
        height: 25rem;
        width: 60;
        z-index: 100;
        position: fixed;
        top: 0;
        right: 0;
        border-radius: 1.2rem;
        background-color: #000;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    nav .links li{
        font-size: 1.5rem;
        margin: 0.5rem;
    }
    nav .links li a{
        color: #fff;
    }
    nav .open, nav .links .close{
        display: block;
        position: absolute;
        top: 1.8rem;
        right: 1.8rem;
    }
    header .content h1{
        font-size: 6rem;
    }
}
/*.gym-images{
    width:  100%;
    height: fit-content;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(bg2.jpeg);
    background-position: center;
    background-size: cover;
}
.gym-images .mySlides{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -0.5%);
    text-align: center;
}
*/

.gym-images {
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(bg2.jpeg);
  background-position: center;
  background-size: cover;
}

.scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.scroll-track img {
  width: 300px; /* Adjust based on layout */
  height: 200px; /* Consistent height */
  object-fit: cover;
  margin-right: 10px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Start About */
.about{
    width:  100%;
    height: fit-content;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(bg2.jpeg);
    background-position: center;
    background-size: cover;
}
.about .row{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 2% 6%;
}
.about .row .image{
    flex: 1 1 40rem;
    padding: 2rem;
}
.about .row .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .row .content{
    flex: 1 1 40rem;
    padding: 2rem;
    text-align: center;
}
.about .row .content h1{
    font-size: 3rem;
    padding: 1rem;
    color: #fff;
    margin-bottom: 5rem;
}
.about .row .content p{
    line-height: 1.7;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.0rem;
}
/* Start Services */
.services{
    width:  100%;
    height: fit-content;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(bg2.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
}
.services h1{
    font-size: 3.8rem;
    padding: 1rem;
    display: inline-block;
    color: #fff;
    border-bottom: .3rem solid #fff;
    margin-bottom: 1.8rem;
}

.services h2{
    font-size: 2.5rem;
    color: #fff;
    align-self: flex-end;
}
.services .container{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}
.services .container .box{
    width: 31rem;
    height: 31rem;
    margin: .5rem;
    position: relative;
    /*overflow: hidden;*/
}
.services .container .box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.services .container .box .info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transform-origin: bottom;
    width: 100%;
    height: 100%;
    border-radius: .6rem;
    background-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.services .container .box:hover .info{
    transform: translate(-50%, -50%) scale(1);
}
.services .container .box .info h3{
    font-size: 3rem;
    color: #000;
    margin-bottom: 1.2rem;
}
.services .container .box .info p{
    line-height: 2;
    color: #fff;
    font-size: 1.1rem;
    padding: 0 1rem;
    margin-bottom: 1.2rem;
}

.services .container .box .title h4{
    font-size: 2.5rem;
    color: #fff;
    padding-top: 2rem;
    padding-bottom: 0;
}
/* Start Trainers */
.trainers{
    width:  100%;
    height: fit-content;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(bg2.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
}
.trainers h1{
    font-size: 3.8rem;
    padding: 1rem;
    display: inline-block;
    color: #fff;
    border-bottom: .3rem solid #fff;
    margin-bottom: 1.8rem;
}
.trainers p{
    font-size: 1.5rem;
    color: #333;
}
.trainers .items{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.trainers .items .item{
    height: 40rem;
    width: 24rem;
    margin: 5rem 1rem;
}
.trainers .item img{
    width: 100%;
    height: 100%;
    border-radius: .6rem;
    object-fit: cover;
}
.trainers .item .inner{
    position: relative;
    z-index: 9999;
    padding: 0 1rem;
}
.trainers .item:hover{
    transform: translateY(-20px);
}
.trainers .item .inner .info{
    background-color: #FFF;
    padding: 1.2rem 1rem;
    border-radius: 0.6rem;
    margin-top: -2.5rem;
}
.trainers .item:hover .info{
    transform: translateY(-30px);
}
.trainers .item .inner .info h4{
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #000;
}
.trainers .item .inner .info p{
    font-size: 1.1rem;
    font-weight: 400;
    color: #000;
    margin-top: .6rem;
}
.trainers .item .inner .info .links{
    margin-top: 1rem;
}
.trainers .item .inner .info .links a{
    display: inline-block;
    height: 2rem;
    width: 2rem;
    background-color: #0000FF;
    border-radius: 50%;
    color: #000;
    text-align: center;
    line-height: 2rem;
    margin-left: 0.3rem;
    font-size: 1.1rem;
}
.trainers .item .inner .info .links a:hover{
    box-shadow: 0 0 .6rem #000;
}
/* Start Plan */
.pricing_table{
    width:  100%;
    height: fit-content;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
    url(bg2.jpeg);
    background-position: center;
    background-size: cover;
    text-align: center;
    min-height: 100vh;
    padding: 2% 6%;
    position: relative;
}
.pricing_table h1{
    font-size: 3.8rem;
    padding: 1rem;
    display: inline-block;
    color: #fff;
    border-bottom: .3rem solid #fff;
    margin-bottom: 2.2rem;
}
.pricing_table .pricing_card{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}
.pricing_card .pricing_box{
    background-color: white;
    width: 20rem;
    box-shadow: 2px 2px 6px #000;
    margin-bottom: 4rem;
}
.pricing_card .pricing_box:hover{
    transform: translateY(-30px);
}
.pricing_box h2{
    font-size: 2rem;
    margin-bottom: 3rem;
    background-color: #000;
    color: #0000FF;
    padding: 1.2rem;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}
.pricing_box h3{
    margin-top: 2rem;
    font-size: 4rem;
    color: #000;
}
.pricing_box h3 sup{
    font-size: 2rem;
}
.pricing_box h3 span{
    font-size: 2.5rem;
}
.pricing_box p{
    font-size: 2.5rem;
    color: #000;
}
.pricing_box ul{
    padding: 2rem;
}
.pricing_box ul li{
    margin-bottom: 0.5rem;
    font-size: 1.0rem;
}
.pricing_box .btn{
    margin-bottom: 2rem;
}
.pricing_box .btn:hover{
    background-color: #000;
    color: #0000ff;
}
/*Start Maps*/
.google-reviews {
  background-color: #000;
  padding: 2rem;
  text-align: center;
  color: #fff;
}

.google-reviews h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0000FF;
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Start Footer */
footer{
    width: 100%;
    color: #000;
    padding: 2rem;
    text-align: center;
    background-color: #0000ff;
    font-size: 1rem;
}