@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Radley:ital@0;1&display=swap');
/*Assigning Root Values*/
:root {
    --primary-background: #212237;
    --primary-text-color: #FFD3BF;
    --secondary-text-color:  #B46C90;
    --button-color: #FFD4C0;
    --navbar-bg:#B2A7BF;
    --nav-elements-color:#3F3C64;
    --paragraph-text-color:#F2BAD6;
    --background-card-section:rgba(148, 134, 227, 0.26);
    --footer-text-color:#BA6E94;
    --contact-page-bg:#F1F5F9;
    --black-color-text:#000000;
    --pink-color:#a194e2;
}
*{
    margin: 0px;
}
a{
    text-decoration: none;
    color: inherit;
}
html{
    font-size:10px;
}

body{
    user-select: none;
    animation: fadeIn 2ms 1ms forwards;

    height:100%;
    background-color: var(--primary-background);
}
img{
    pointer-events: none;
}
.main-div-contact:hover{
    cursor: text;
}
.main-div-contact{
    user-select: text;
}
/* Landing Page */
#landing-page{
    height:100svh;
}
.logo{
    pointer-events: none;
    width: 85px;
    height: 85px;
    position: relative;
    inset:10px auto auto 10px;
}
.desk-nav{
    position: absolute;
    right: 20px;
}

.navbar{
    position: absolute;
    right: 40px;
}
.header-landing-page{
    position:absolute;
    width: 100%;
    top:0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    background: var(--primary-background);
}
.name{
    width: 100%;
    height:100svh;
    font-size: 10px;
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content:center;
    margin:auto 0;
    position: relative;
    z-index: 1;
}
.name h1{
    font:normal 400 11.5rem/0.9 Poppins;
} 
.mainname{
    color:var(--primary-text-color);
    text-shadow: 0px 4px black;
    margin: 0 auto;
    animation: to_right 0.7s ease forwards 0s;
}
.surname{
    color: var(--secondary-text-color);
    position: relative;
    margin:0 auto 0 46.13%;
    animation: to_left 0.7s ease backwards 0s;
}
.bgsvg{
    position: absolute;
    inset:auto 0px 0px auto;
}
.main-btn{
    z-index: 1;
    color: var(--button-color);
    height: 52px;
    width: 162px;
    border:1px solid var(--primary-text-color);
    background: none;
    border-radius: 50px;
    font-family: Poppins;
    font-size: 2rem;
    position: absolute;
    inset:auto auto 15% 40px; 
    animation: to_top 0.7s ease forwards 0s   
}
.main-btn:hover{
    cursor: pointer;
}
.vector-mid{
    animation: vector_animate 0.7s ease forwards 0s
}
.vector-top{
    animation: vector_animate 0.9s ease forwards 0s
}
/*Common Navigation Bar*/
.navigation{
    position:fixed;
    inset:0 0 auto auto;
    border-radius: 20px 0px 0px 20px;
    box-shadow: 5.82px 0px 21.341px 0px rgba(0, 0, 0, 0.09);
    backdrop-filter: blur(2px);
    height:100vh;
    width:60%;
    background:var(--navbar-bg);
    display:none;
    animation: navbar_fadeIn 0.4s;
}
.navigation{
    animation: to_bottom;
}
.main-header-desk-nav{
    display:none;
}
.header-desk-nav, .header-desk-about-nav{
    display:none;
}
.head-container-main-nav {
    color:var(--nav-elements-color);
    font:normal 400 2.2rem/normal Poppins;
    padding-left:10%;
}
.container-main-nav{
    display:flex;
    padding:13% 0 0 14%;
}
.header-nav{
    padding:7% 10% 0 15%;
    display:flex;
    justify-content:space-between;
}
.main-nav ul{
    padding:0%;
    list-style-type: none;
}
#head-container-id{
    color:var(--button-color);
    margin:auto 0;
    padding:0px;
}
.list-main-nav{
    margin:0 auto;
}
.svg-container-main-nav{
    margin:auto 0;
}
/*Key Frames*/

@keyframes to_right {
    0%{
        transform: translateX(-200px);
    }
    100%{
        transform: translateX(0);
    }
}
@keyframes to_bottom {
    0%{
        transform: translateY(-100px);
    }
    100%{
        transform: translateX(0);
    }
}
@keyframes to_top {
    0%{
        transform: translateY(80px);
    }
    100%{
        transform: translateX(0);
    }
}
@keyframes vector_animate {
    0%{
        transform: translateX(250px) translateY(200px);
    }
    100%{
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
@keyframes to_left {
    0%{
        transform: translateX(250px);
    }
    100%{
        transform: translateX(0);
    }
}
@keyframes navbar_fadeIn{
    0%{
        opacity: 0;
        filter:blur(1px)
    }
    100%{
        opacity:1;
        filter: blur(0px)
    }
}
@keyframes navbar_fadeOut{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes slide-to-top {
    from {
        transform: translateY(200px);
    }
    to {
        transform: translateY(-0px);
    }
}

/*Main Page*/
/* Common Header */
.header-main-page , .header-main-about{
    padding:15px;
    background-color:var(--primary-background);
    z-index: 2;
}
.header-main-page{
    position: sticky;
    top:0%;
}
.header-main-about{
    width:100%;
    position: fixed;
    top:0%;
    animation: to_bottom 0.5s ease forwards 0s;
}
.navBarCommon{
    position: absolute;
    right: 15px;
}
.header-image{
    width: 200px;
    height: 39.216px;
    padding:auto 0 0 auto 30px;
}
.h2-main-main-page{
    height: fit-content;
    color: var(--primary-text-color);
    text-align: center;
    font:normal 400 4rem/normal Radley;
    padding-top:29%;
}
.p-main-main-page{
    height: fit-content;
    color: var(--paragraph-text-color);
    text-align: center;
    font:normal 400 1.5rem/normal Poppins;
    padding:3% 7%;
    margin-bottom: 9.4%;
}
.after-response{
    position:absolute;
    top:0;
    background: var(--primary-background);
    z-index: 2;
    display:none;
    scroll-behavior: smooth;
}
.position{
    position:fixed;
    top:0;
}
/*Main Page Section(Card) Styling*/
.main-page-section{
    text-align: center;
}
.card-section{
    padding:20px 0 20px 0;
    border-radius: 10px;
    margin: 9% 4.3% 4.5% 4.3%;
    background-color: var(--background-card-section);
    border: 1px solid var(--pink-color);
}
.heading-card-section{
    font:normal 400 3.6rem/normal Poppins;
    color: var(--button-color);
    margin:4% 0 6% 0;
}
.desk-about-card{
    display: none;
}
.img-card-section{
    width: 300px;
    height: 180px;
    border-radius: 15px;
    margin:0 auto;

}
.para-card-section{
    color: var(--paragraph-text-color);
    font:normal 400 2rem/normal Poppins;
    margin:10% 7% 0px 7%;
    text-align: center;

}
/*Common Footer*/
.footer-image{
    width: 250px;
    height: 54.435px;
    padding:3px;
}
.main-page-footer-para{
    width: 86%;
    height: 66px;
    margin:2px 20px;
}
.main-page-footer{
    background: var(--contact-page-bg);
    position:relative;
    bottom:0;
    margin-top: 20%;
    padding-bottom: 20px;
}
.main-page-footer-para, .main-page-p{
    color: var(--nav-elements-color);
    font:normal 400 1.3rem/normal Poppins;
}
.main-page-p{
    padding:8% 0;
}
.main-page-h3{
    color: var(--footer-text-color);
    font:normal 600 1.5rem/normal Poppins;
}
.footer-div, .footer-div-orphan{
    width:100px;
    height:fit-content;
}
.footer-div-orphan{
    margin:10% 0 0 5%;
}

.social-icon-footer{
    width: 24px;
    padding-right:5% ;
}
a{
    display: inline-block;
    height: auto;
    margin-right: 3%;
}
.social-footer-icon-div{
    margin:2% 0 6% 5% ;
}
.footer-div-div{
    display:flex;
    flex-wrap: wrap;
    justify-content:start;
    margin-left:5%;
}
/* Gym Book Page */
#GymBook-Page{
    animation:navbar_fadeIn 0.5s;
}
.section-div-gymbook{
    position: relative;
    height: 90vh;
}
.heading-gymbook-page{
    text-align: center;
    padding-top:7%;
    margin:0;
}
.img-main-gymbook-section , .img-main-gymbook-section1{
    width:100%;
    height:78%;
    position: absolute;
    bottom: 0%;
    z-index: -1;
}
.img-main-gymbook-section1{
    display:none;
}
.img1-main-gymbook-section{
    margin-top:10%;
    width: 80%;
    height: 100%;
    object-fit: cover;
}
.heading-gymbook-page1{
    font-size: 3.2rem;
    margin-top: 17%;
    text-align: center;
}
.gymbook-page-content{
    text-align: center;
}  
/* Contact Page */
.contact-page-div{
    background-color:var(--contact-page-bg);
    z-index:3;
    animation:navbar_fadeIn 0.5s;
}
.main-head-contact{
    text-align: center;
    color: var(--nav-elements-color);
    font:normal 400 4rem/normal Poppins;
    margin-top: 10%;
}

.main-para-contact{
    text-align: center;
    color: var(--nav-elements-color);
    font:normal 400 1.2rem/normal Poppins;
    margin-bottom:1.5%;
}
.div-inputs-contact{
    display: flex;
    flex-direction: column;
    width:86vw;
    align-items: flex-start;
    margin:0 auto;
    color: var(--nav-elements-color);
    font:normal 400 1.3rem/normal Poppins;
}
.div-inputs-contact input,textarea{
    border-radius: 5px;
    border: 1px solid var(--primary-background);
    background: var(--contact-page-bg);
    height:5.25%;
    padding:8px 0 8px 10px;
    width: 97%;
    margin-bottom: 15px;
}
input::placeholder, textarea::placeholder{
    color: rgba(0, 0, 0, 0.40);
    font:normal 400 1rem/normal Poppins;
    line-height: normal;
}
label::after{
    content:"*";
    color:#F9171B;
    width: 10px;
}
.div-inputs-contact textarea{
    height: 83px;
}
.mobile-hider{
    display: none;
}
.contact-section{
    background-color:var(--contact-page-bg);
    font-family: Poppins;
}
.submit-button-contact{
    color:white;
    background-color: var(--nav-elements-color);
    border-style: none;
    border-radius:50px;
    padding: 5px 10px;
    width:43vw;
    height: 35px;
    font-size:1.2rem;
    font-family: Poppins;
    margin:0 auto;
    display:flex;
    align-items: center;
    justify-content: center;
}
.submit-svg-button-contact{
    width:18px;
    margin-bottom: 3px;
}
.contact-footer-divs{
    width:86vw;
    margin:0 auto;
}
.map{
    border-radius:15px;
    width: 100%;
    margin:10% 0 30px 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.main-div-contact{
    border:1px solid var(--primary-background);
    border-radius:5px;
    padding:6% 6.5% 6% 6.5%;
    color:var(--black-color-text);
    margin-bottom: 5%;
}
.div-footer-contact{
    display:flex;
    align-items:center;
    margin-bottom:3%;
}
.head-div-contact{
    color:var(--black-color-text);
    font:normal 500 2rem/normal Poppins;
    margin-left: -2%;
}
.para-div-contact{
    color:var(--black-color-text);
    font:normal 400 1.3rem/normal Poppins;
    margin-bottom: 2.8%;
}
.svg-contact-div{
    margin-right: 3%;
}
.content-div-contact{
    font-size:1.3rem;
}
#errorMessage {
    color: red;
    margin:10px auto;
    text-align: center;
}
.after-response{
    width:100%;
    background-color: white;
    height:100svh;
    animation: navbar_fadeIn 0.4s ease forwards 0s;
}
.request-success-main{
    text-align: center;
    margin-top:30%;
}
.tick-svg{
    width: 95px;
    height: 95px;
    margin-bottom: 5%;
}
.request-success{
    color: #3F3C64;
    text-align: center;
    font:normal 500 2.1rem/normal Poppins;
}
.request-success-para{
    width: 88.5%;
    height: fit-content;
    margin: 0 auto;
    color: var(--nav-elements-color);
    text-align: center;
    font:normal 400 1rem/normal Poppins;
    margin-bottom: 7%;
}
.request-success-btn{
    width: 150px;
    color: #FFF;
    font:normal 400 1rem/normal Poppins;
    background: var(--nav-elements-color);
    border-radius: 50px;
    border: none;
    padding:5px 10px;
}
.animation_close{
    animation: navbar_fadeOut 0.4s;
}
#errorMessage {
  color: red;
  margin-top: 10px;
  font-size: 14px;
}

/* Pricing Page */
.pricing-page{
    animation:navbar_fadeIn 0.5s;
}
.pricing-section{
    background-color: #212237;
    padding: 5% 4% 1% 4%;
    font-family: Poppins;
    text-align: center;
}
.pricing-main-head{     
    color:#FFD4C0;
    font-size: 2.3rem;
    font-weight: 400;
    margin: 20px auto 20px auto;
}
.pricing-main-para{
    color: #BA6E94;
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;

    margin-right: auto;
    margin-left: auto;
}
.pricing-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 51px;
    border-radius: 100px;
    border: 1px solid #FFD4C0;
    background: var(--pink-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 15%;
}
.onemonth{
    padding-left:20px;
}
.twelvemonth{
    padding-right:20px;
}
.pricing-bar-para{
    color: #FFF;
    text-align: center;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.background-highlight{
    width: fit-content;
    padding:0 20px;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #B2A9DF;
    background: #3F3C64;
}
.pricing-card-section,.pricing-card-section-silver,
.pricing-card-section-gold,.pricing-card-section-platinum,
.pricing-card-section-custom{
    background-color:#3F3C64;
    border-radius: 20px;
    border:4px solid var(--pink-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    margin-bottom: 6%;
    padding: 30px 20px 30px 20px;
    position: relative;
    margin-bottom: 30px;
                            
}
.pricing-card-section-silver,
.pricing-card-section-gold,.pricing-card-section-platinum{
    display:none;
}
.pricing-card-head{
    color: #FFF;
    position: absolute;
    left: 20px;
    font-family: Poppins;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: inline;
}
.popular {
    position: absolute;
    right: 18px;
    display: inline;
    color: #FFF;
    text-align: center;
    font: 400 1.5rem/50% Poppins, sans-serif;
    border: 1.074px solid #BA6E94;
    border-radius: 60px;
    background: #BA6E94;
    padding: 10px;
    box-shadow: 0 4.296px 4.296px rgba(0, 0, 0, 0.25);
    width: auto;
    height: fit-content;
}

.price-tag-old{
    color: #c9a7cc;
    text-decoration: line-through;
    font-size: 2.2rem;
    text-align: center;
    margin: 50px auto -2% auto;
}
.price-tag{
    color: #e3dff8;
    font-size: 6.4rem;
    text-align: center;
    font-weight: 400;
    margin: 0 auto 4%;
}
.price-description {
    color: rgba(255, 255, 255, 0.808);
    font: 400 1.7rem/normal Poppins;
    margin-bottom: 10%;
    text-align: left;
}
.price-description span {
    display: block;
    margin-bottom: -5px; /* Adjust as needed */
}
.price-button{
    color: white;
    font-size: 2rem;
    border-radius: 50px;
    border: 1px solid #FFF;
    background: var(--pink-color);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 10px;
    margin-left: auto;
    margin-right: auto; 
    margin-top: 20%;
    display: flex;
    align-items: center; /* Aligns items vertically */
    justify-content: center; /* Centers items horizontally */
    gap: 8px; /* Adds space between text and SVG */
    padding: 10px 20px; /* Adjusts button padding */

}
.price-button:hover{
    cursor: pointer;
    background-color: #806ddf;
}

.price-button svg{
    display: inline-block;
    vertical-align: middle;
    height: 25px;
    width: auto;
}


#pricing-contact .price-tag{
    font-size: 3rem;
    font-weight:600;
}
#pricing-contact .price-description{
    text-align: center;
}
#pricing-contact button{
    margin-top:0;
}
/* FAQ Page */
.FAQ-page{
    background-color:var(--contact-page-bg);
    animation:navbar_fadeIn 0.5s;
}
.FAQ-element-div{
    display: flex;
    justify-content: space-between;
}
.FAQ-element-div:hover{
    cursor: pointer;
}
.FAQ-section{
    background-color:var(--contact-page-bg);
    height: 100%;
    background-size: cover;
    font-family: Poppins;
    padding: 5%;
}
.FAQ-head{
    color: #3F3C64;
    font-weight: 400;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 8%;
}
.FAQ-para{
    color: #3F3C64;
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 8%;
    width: 90%;
    margin-top: auto;
    margin-bottom: auto;
}
.FAQ-answers,.FAQ-answers1,.FAQ-answers2,.FAQ-answers3,
.FAQ-answers4,.FAQ-answers5,.FAQ-answers6{
    margin-top: 10px;
    font-size:1.2rem;
}
.hidden {
    display: none;
  }
.FAQ-section hr{
    margin: 3% 0% 3% 0%;
    color: #D5D3EC;
}
.FAQ-section svg{
    height: 32px;
    width: auto;
    margin-top: auto;
    margin-bottom: auto;
}
#pricing-contact{
    margin: auto auto;
    margin-bottom: 40px;
}
/* Privacy Page */
.privacy-page{
    background:var(--contact-page-bg);
}
.privacy-main{
    padding:5%;
}
.privacy-h1{
    font:normal 600 3.2rem/normal Poppins;
    padding:20px 0;
}
.privacy-h3{
    font:normal 500 2.2rem/normal Poppins;
    padding:0 0 15px 0;
}
.privacy-h4{
    font:normal 500 1.6rem/normal Poppins;
    padding:0 0 15px 0;
}
.privacy-p{
    font:normal 400 1.4rem/normal Poppins;
    padding:0 0 15px 0;
}
/* Responsive For Small Mobile Size */
@media (width < 375px){
    html{
        font-size:8.3px;
    }
    .main-btn{
        height: 50px;
        width: 135px;
        inset:auto auto 15% 20px;
    }
    .img-card-section{
        width:270px;
        
    }
    .navigation{
        height:100%;
    }
    
}
@media (width > 425px){
    html{
        font-size:11px;
    }
    .name{
        top:-10px;
        right:20px;
    }
    .logo{
        width: 100px;
        height: 100px;
    }
    .navbar{
        width: 70px;
        height: 70px;
        top:10px;
    }
    .bgsvg{
        width:120px;
        height:270px;
    }
    .card-section{
        height:auto;
        margin: 9% auto 4.5% auto;
        width: 80%;
        border: 1px solid var(--pink-color);
    }
    .img-card-section{
        width: 66%;
        height:200px;
    }
    .header-image{
        height:50px;
        width:auto;
    }
    .head-container-main-nav{
        font-size: 25px;
    }
    .svg-container-main-nav{
        height:25px;
        width:30px;
    }
    .svg-header-nav{
        height:50px;
        width:auto;
    }
    .para-card-section{
        margin-top:3%;
    }
    .map{
        width:100%;
        height:300px;
    }
    .contact-footer-divs{
        width: 70vw;
    }
    .svg-contact-div{
        width: 20px;
        height: auto;
    }
    .div-inputs-contact{
        width:72vw;
    }
    .tick-svg{
        margin-bottom: 2%;
    }
    .request-success-main{
        margin-top: 18%;
    }
    .request-success-para{
        width:65%;
        margin-bottom: 4%;
    }
    .request-success-btn{
        width:35vw;
        padding:15px 10px;
    }
    .h2-main-main-page{
        padding-top:10%;
    }
    .pricing-main-para{
        margin-bottom: 50px;
    }
    .pricing-section{
        padding-right:2%;
        padding-left: 2%;
        padding-top: 1%;
    }
    .pricing-card-head{
        font-size: 1.5rem;
    }
    .pricing-card-section,.pricing-card-section-silver,
    .pricing-card-section-gold,.pricing-card-section-platinum,
    .pricing-card-section-custom{
        width: 35%;
    }
    .price-tag-old{
        font-size: 1rem;
        margin-top: 25px;
    }
    .price-tag{
        font-size: 3rem;
    }
    .pricing-cards{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .popular{
        font-size: 0.7rem;
    }
    .pricing-bar{
        display: none;
    }
    .price-description{
        font-size: 0.8rem;
    }
    .price-button{
        font-size: 1rem;
    }
    .price-button svg{
        height: 20px;
        width: auto;
    }
    .pricing-cards{
        gap: auto;
    }
    .pricing-card-section-silver,
    .pricing-card-section-gold,
    .pricing-card-section-platinum {
        display: block;
}
}
@media (width >= 768px){
    html{
        font-size:18px;
    }
    .logo{
        width: 120px;
        height: 120px;
    }
    .main-btn{
        height: 75px;
        width: 250px;
        inset:auto auto 13% 10%;
    }
    .bgsvg{
        width:180px;
        height:320px;
    }
    .navigation{
        width:45%;
    }
    .head-container-main-nav{
        font-size:1.8rem;
    }
    .svg-container-main-nav{
        height:auto;
    }
    .social-icon-footer{
        width: 40px;
    }
    .main-page-footer-para {
        height:auto;
    }
    .main-page-footer{
        margin-top: 20px;
    }
    .pricing-main-para{
        margin-bottom: 50px;
    }
    .pricing-section{
        padding-right:2%;
        padding-left: 2%;
    }
    .pricing-card-head{
        font-size: 1rem;
    }
    .pricing-card-section,.pricing-card-section-silver,
    .pricing-card-section-gold,.pricing-card-section-platinum,
    .pricing-card-section-custom{
        width: 42%;
    }
    .price-tag-old{
        font-size: 1rem;
    }
    .price-tag{
        font-size: 3rem;
    }
    .pricing-cards{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .pricing-bar{
        display: none;
    }
    .price-description{
        font-size: 0.8rem;
    }
    .price-button{
        font-size: 1rem;
    }
    .price-button svg{
        height: 20px;
        width: auto;
    }
    .pricing-cards{
        gap: auto;
    }

/*Large screen*/
@media (width >= 992px){
    .main-btn:hover{
        color:rgb(241, 226, 220);
        box-shadow: 0px 0px 35px 0.1px #8877e442;
        
    }
    .scroll-bar-hide{
        overflow-y: hidden;
        overflow-x: hidden;
    }
    .header-main-page{
        display: none;
    }
    .header-landing-page{
        display:none;
    }
    html{
        font-size:15px;
    }
    .bgsvg{
        width:160px;
        height:310px;
    }
    .name{
        top:-10px;
        right:50px;
    }
    .mainname{
        text-shadow: 0px 8.448px 8.448px var(--black-color-text);
    }
    .main-btn{
        height: 64px;
        width: 260px;
        inset:auto auto 6% 0;
        font-size: 1.8rem;
        text-transform: uppercase;
        margin-left: 150px;
    }
    .header-image{
        height:70px;
        width:auto;
    }
    .whole-main-page{
        margin:0 auto;
    }
    .h2-main-main-page{
        font-size: 3.5rem;
        padding-top:10%;
    }
    .p-main-main-page{
        max-width: 1440px;
        margin:0 auto;
        background-size: cover;
    }
    .p-main-main-page br{
        height: 100px;
    }
    .main-page-section{
       
        width:90%; 
        margin:0 auto;
    }
    .card-section{
        margin:0 0 2% 0;
        height:auto;
        background-size: cover;
        
    }
    #gymbook-card{
        margin-left:auto;
        margin-right: auto;
    }
    .img1{
        height:370px;
        width:auto;
    }
    .img2{
        height:auto;
        width:50%;
    }
    .img2 .img-card-section{
        height:300px;  
    }
    .desk-about-card{
        display: flex;
        align-items: center;
        padding: 3%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom:5%;
    }
    .card-section{
        margin-left: auto;
        margin-right: auto;
    }
    .img-card-section-desk{
        width: 40%;
        height: auto;
        border-radius: 5%;
    }
    .desk-about-text-card{
        width:60%;
    }
    .mobile-about-card{
        display: none;
        
    }
    .para-card-section{
        text-align: left;
        margin: 2% 5% 0px 10%;
    }
    .heading-card-section{
        margin-bottom: 0;
        font-size:3rem;
        margin-top: 0;
    }
    .test-container{
        display: flex;
        gap: 2%;
    }
    /* Gym Book Page */
    .heading-gymbook-page{
        padding-top: 1%;
    }
    .img-main-gymbook-section{
        display: none;
    }
    .img-main-gymbook-section1{
        display: block;
        width: auto;
        height:80%;
        margin:0 auto;
        inset:auto 0 0 0;
    }
    .img1-main-gymbook-section{
        width:60%;
    }
    .heading-gymbook-page1{
        margin-top:8%;
    }
    /* Contact Page */
    .main-head-contact{
        font-size: 3.5rem;
        margin-top: 3%;
    }
    .div-inputs-contact{
        width:50vw;
    }
    .div-inputs-contact input,textarea{
        font-size: 1.7rem;
        width: 100%;
        padding:10px 0 10px 30px;
    }
    .submit-button-contact{
        width:50vw;
        padding: 35px 10px;
        font-size: 1.7rem;
    }
    .submit-svg-button-contact{
        width:45px;
        height: auto;
    }
    .map{
        width:100%;
        height:350px;
    }
    .contact-footer-divs{
        width: 45vw;
    }
    .svg-contact-div{
        width: 30px;
        height: auto;
    }
    .request-success-main{
        margin-top: 8%;
    }
    .tick-svg{
        margin-bottom: 2%;
    }
    .request-success-para{
        width:65%;
    }
    .request-success-btn{
        width:35vw;
        padding:15px 10px;
    }
    /* Footer */
    .footer-div-div-div{
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        margin:30px 0px 5% 0px;
    }
    .footer-div-orphan{
        margin-top: 0;
    }
    
    .footer-div-div{
        margin-right: 100px;
        padding-right: 0;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        margin-left: 10%;
    }
    .main-page-p{
        padding:4% 0;
    }
    .main-page-p:hover{
        text-decoration: underline;
        cursor:pointer;
    }
    .footer-div , .footer-div-orphan{
        border:1px solid var(--black-color-text);
        border-radius: 15px;
        padding: 3px 30px 10px 30px;
        text-align: left;
        width: fit-content;
        height: 200px;
        box-shadow: 0px 3.955px 3.955px 0px rgba(0, 0, 0, 0.25);
    }
    .social-footer-icon-div{
        position: absolute;
        bottom:0;
        right:0;
        margin:4% 0 1% 3%;
        width:400px;
    }
    .social-icon-footer{
        width:45px;
        height:auto;
        margin-left: 12px;
    }
    .main-page-footer-para{
        margin-bottom:30px;
    }
    a{
        margin-right: 4%;
    }
    /* main-nav*/
    .header-main-about{
        display:none;
    }
    .main-header-desk-nav{
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 2;
    }
    .desk-nav-div{
        display:flex;
        gap:5px;
        width:fit-content;
        align-items: center;
    }
    .svg-container-desk-nav{
        stroke:#8d7ecf;
        height:25px;
        width:auto;
    }
    .desk-nav-div:hover .svg-container-desk-nav path {
        stroke: #c0b5f7;
        cursor: pointer;
    }
    
    .desk-nav-div:hover .desk-nav-element {
        color: #c0b5f7;
        cursor: pointer;
    }
    /* Navigation Bar */
    .header-desk-nav,.header-desk-about-nav{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        z-index: 5;
        background: var(--primary-background);
    }
    .header-desk-nav{
        position: sticky;
        top: 0;
    }
    .header-desk-about-nav{
        position: fixed;
        top: 0;
    }
    .desk-nav{
        display: flex;
        justify-content: space-evenly;
        gap: 45px;
        padding-right: 50px;
    }
    .desk-nav-element{
        color: #8d7ecf;
        font:normal 400 1.5rem/normal Poppins;
    }
    .desk-nav-element:hover{
        color: #c0b5f7;
        cursor: pointer;
    }
    .main-logo{
        width: auto;
        height: 50px;
        padding: 10px;
    }
    .card-section:hover{
        cursor:pointer;
    }
    .submit-button-contact:hover{
        box-shadow: 0px 0px 35px 2px #8777e49f;
        cursor:pointer;
    }
    
    .pricing-main-para{
        margin-bottom: 50px;
    }
    .pricing-section{
        padding-right:1%;
        padding-left: 1%;
    }
    .pricing-card-head{
        font-size: 1rem;
    }
    .pricing-card-section,.pricing-card-section-silver,
    .pricing-card-section-gold,.pricing-card-section-platinum,
    .pricing-card-section-custom{
        width: 19%;
    }
    .price-tag-old{
        font-size: 1.2rem;
    }
    .price-tag{
        font-size: 2.5rem;
    }
    .pricing-cards{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .pricing-bar{
        display: none;
    }
    .price-description{
        font-size: 0.8rem;
    }
    .price-button{
        font-size: 1rem;
    }
    .price-button svg{
        height: 20px;
        width: auto;
    }
    .pricing-cards{
        gap: auto;
    }
    #pricing-contact{
        margin: auto auto;
        margin-bottom: 40px;
    }
}    
@media (width > 1200px){
    html{
        font-size:17px;
    }
    .bgsvg{
        width:200px;
        height:340px;
    }
    .logo{
        width: 100px;
        height: 100px;
    }
}}