*{
    margin: 0;
    padding: 0;
    color: white;
    font-family: "New Amsterdam", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    box-sizing: border-box;
}

li{
    list-style: none;
}
nav{
    display: flex;
    align-items: center;
    width: 100%;
    height: 80px;
    justify-content: space-between;
    background-color: #fbb765;
}
.logo{
    font-family: "Matemasie", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
}

.logo p{
    font-family: "Baskervville SC", sans-serif;
    font-weight: 800;
    font-size: 35px;
    letter-spacing: 2px;
}
.logo img{
    width: 60px;
    height: 60px;
    margin-left: 10px;
}
.nav-links{
    list-style: none; 
    display: flex;
    gap: 35px;
    font-size: 1.2rem;
    padding-right: 10px;
}

.nav-links li a{
    text-decoration: none;
    padding: 10px;
}

#free-trail{
    background-color: #0a4040;
}

.fitness-logo{
    width: 100vw;
}

.freeTrailBg{
    background-image: url(workout.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.freeTrialText{
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainText{
    
    font-size: 100px;
}

.belowText{
    font-size: 1.2rem;
}

.freeTrialText a{
    text-decoration: none;
    background-color: #fbb765;
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
}

.membership{
    flex-direction: column;
    background-color: #161717;
    padding: 0px 80px;
}

.priceDetails{
    gap: 40px;
}

.plan{
    background-color: white;
    padding: 30px;
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.basic, .premium, .platinum{
    background-color: #fbb765;
    text-align: center;
    justify-content: space-evenly;
    font-size: 1.2rem;
    width: 33%;
}

.details li{
    margin: 20px;
    color: #093535;
}

.price{
    font-size: 3rem;
    margin: 50px 0px 20px 0px;
}

.pricelistText{
    font-size: 4rem;
    text-align: center;
}

.boldline{
    height: 6px;
    width: 100%;
    background-color: #fbb765;
    margin: 20px 0px 40px 0px;
}
.amenities{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color: #093535;
    overflow: hidden;
}

.amenity-text{
    font-size: 3rem;
    margin-top: 30px;
}

.slides{
    width: 50%;
    display: flex;
    margin-top: 30px;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
}

.slide{
    width: 100%;
}

.imgPosition{
    gap: 5px;
    display: flex;
    margin-top: 20px;
}
.circles{
    height: 10px;
    width: 10px;
    background-color: rgb(188, 186, 186);
    border-radius: 50%;
    cursor: pointer;
}

.circle {
    width: 10px;
    height: 10px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: width 0.3s ease;
}

.circle.active {
    width: 20px;
    background-color: #fbb765;
}

.aboutUs{
    background-color: #072929;
    padding: 100px;
    gap: 50px;
}

.aboutUsText{
    width: 50%;
}

.heading{
    font-size: 3rem;
    margin-bottom: 20px;
}

.msg{
    font-size: 1.5rem;
    text-align: justify;
    margin-bottom: 20px;
}

.freeDemo{
    font-size: 1.5rem;
    text-align: justify;
}

.bigLogo{
    width: 50%;
    flex-direction: column;
   
}
.bigLogo img{
    width: 15rem;
    height: 15rem;
}

.logoText{
    font-size: 5rem;
    font-family: "Baskervville SC", serif;
}

.contact{
    padding: 50px;
    background-color: #ffc072;
}

.contactLeft,.contactRight{
    padding: 40px;
    width: 50%;
}
.form{
    width: 100%;
    height: 3.5rem;
    padding: 5px;
    margin: 15px 0;
    font-size: 1.5rem;
    border: none;
}

textarea{
    width: 100%;
    padding: 5px;
    margin: 15px 0;
    font-size: 1.5rem;
    border: none;

}

.contactHeading{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
}

.icons{
    font-size: 2rem;
    font-family: sans-serif;
    text-align: center;
    margin: 20px;
    font-weight: 700;
}

.icons img{
    height: 3rem;
    margin: 20px 10px -9px 0;
}

.form::placeholder, textarea::placeholder, .trailForm::placeholder{
    font-size: 1.5rem;
    padding: 10px;
}

.trailForm{
    width: 60%;
    height: 3.5rem;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.281);
    border: none;
    border-radius: 0.5rem;
    color: #fbb765;
    font-size: 1.5rem;
}

.trailForm::placeholder{
    color: white;
}

.footerContent{
    background-color: #062828;
    height: 50vh;
    display: flex;
    justify-content: space-around;
    padding: 50px;
    text-align: center;
}

.footerContent p{
    margin-bottom: 30px;
    color: #fbb765;
}

.footerContent li{
    margin: 15px 0;
}

.copyright{
    height: 10vh;
    background-color: #051f1f;
}

.copyright span{
    font-size: 2rem;
}

@keyframes appear {
    from {
        opacity: 0;
        scale: 0.5;
    }
    to {
        opacity: 1;
        scale: 1;
    }
}

.animation{
    animation: appear forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}
