* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
  height: 100%;
  width: 100%;
}

/****************************HEADER**************************/

.header {
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  transition: 0.6s;
  justify-content: space-between;
  background-color: #272727;
  z-index: 100000;
  padding: 0 10px;
}


.logo {
  width: 130px;
  font-size: 0;
}

.logo img {
  width: 100%;
}


.navbar a {
  color: white;
  font-size: 15px;
  text-decoration: none;
  padding-right: 20px;
  transition: 0.3s;
}

.freeconsultation {
  background-color: #FFC436;
  color: #272727;
  border: none;
  font-size: 15px;
  font-weight: bolder;
  border-radius: 5px;
  cursor: pointer;
  align-items: center;
  padding: 10px 10px;
  margin-right: 20px;
}

.freeconsultation:hover {
  scale: 1.05;
}

.navbar a:hover {
  color: #FFC436
}

.navicon {
  color: #FFC436;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  display: none;
}

.mobile-header {
  display: none;
  align-items: center;
  flex-direction: row;
}

section {
  padding: 10px;
}

.navbar .navicon {
  display: none;
}

.mobile-btn {
  display: none;
}

/****************************hero section***********************/

.fpthero{
    width: 100%;
    background-color: #272727;
    height: 600px;
    margin-top: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}


.fpthero-content{
    padding: 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fpthero-content p{
    line-height: 1.7;
    margin: 10px 0px;
}

.fpthero-image{
    width: 100%;
    height: 600px;
}

.fpthero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fpthero-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 10px;
    background-color: #FFC436;
    color: #272727;
    border-radius: 10px;
    border: 0px;
    font-size: 16px;
    font-weight: bolder;
    align-self: center;
}

.fpthero-btn:hover{
  transform: scale(1.02);
  cursor: pointer;
}


/****************************intro section**************************/

.fptsec{
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  align-content: center;
}

.fpt-p{
  width: 70%;
  max-width: 1000px;
  padding: 0px 10px;
  text-align: center;
}

.fpt-p p{
  line-height: 1.7;
  margin: 20px 0px;
}

.fpt-p .para{
  text-align: left;
}


.fptsecbtn{
  display: inline-block;
    padding: 10px 10px;
    background-color: #FFC436;
    color: #272727;
    border-radius: 10px;
    border: 0px;
    font-size: 16px;
    font-weight: bolder;
    text-align: center;
}

.fptsecbtn:hover{
  transform: scale(1.02);
  cursor: pointer;
}

.secimg{
  width: 70%;
  margin: 20px 0px;
}


/****************************WRAPPER**************************/


.wrapper {
  max-width: 60%;
  margin: auto;
}

.wrapper > p,
.wrapper > h1 {
  margin: 20px 0;
  text-align: center;
}

.accordion {
  background-color: white;
  color:#272727;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.accordion i {
  font-size: 1rem;
}

.active,
.accordion:hover {
  background-color: #FFC436;
}
.pannel {
  padding: 1rem 2rem 1.5rem 1rem;
  background-color: white;
  overflow: hidden;
  background-color: #F4F0EF;
  display: none;
}
.pannel p {
  color: #272727;
  font-size: 16px;
  line-height: 1.4;
}

.faq {
  margin: 10px 0;
  border: 1px solid;
}
.faq.active {
  border: none;
}


/*******************  Price Card  ******************/

.pricecardsection {
    height: max-content;
}

.pcgrids {
    display: flex;
    justify-content: center;
    max-height: max-content;
    gap: 20px;
}

.pricecard {
  position: relative;
  overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    max-width: 400px;
    border: #FFC436 1px solid;
    border-left: 5px #FFC436 solid;
}

.h3 {
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.pricecard h3 {
    font-size: 24px;
    font-weight: lighter;
    padding-bottom: 20px;
    text-align: center;
    color: #272727;
    font-family: "Impact", serif;
}

.taglinepc {
    text-align: center;
    color: #272727;
}

.appbased {
    text-align: center;
    font-size: 12px;
}

.amtp {
    text-align: center;
}

.pcamount {
    font-size: 32px;
    font-weight: 800;
    color: #272727;
}

.pcbtn {
    background-color: #FFC436;
    border: none;
    border-radius: 5px;
    color: #272727;
    width: 100%;
    font-size: medium;
    font-weight: 800;
    padding: 10px 0px;
    margin: 20px 0px;
    cursor: pointer;
}

.pcbtn:hover {
    background-color: #272727;
    color: #FFC436;
}

@media only screen and (max-width: 1300px) {

    .pricecard {
        max-width: 350px;
    }

}

@media only screen and (max-width: 1100px) {

    .pricecard {
        max-width: 280px;
    }

    .pricecard h3 {
        font-size: 18px;
    }

    .pcamount {
        font-size: 22px;
    }

    .taglinepc {
        font-size: 14px;
    }

}

@media only screen and (max-width: 900px) {

    .pricecardsection {
        padding: 30px 0px;
    }

    .pcgrids {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 30px;
    }

    .pricecard {
        max-width: 350px;
    }

    .pricecard h3 {
        font-size: 32px;
    }

    .amtp {
        font-size: 18px;
    }

    .pcamount {
        font-size: 32px;
    }

    .taglinepc {
        font-size: 18px;
    }

}


.ribbon {
    position: absolute;

    top: 0px;
    /* Adjust as needed for desired vertical position */

    right: 40px;
    /* Adjust as needed for desired horizontal position */

    background-color: #FFC436;
    /* Ribbon background color */

    color: #ffffff;
    /* Ribbon text color */

    padding: 5px 5px 5px 10px;
    /* Adjust padding for ribbon size */

    font-size: 14px;

    border-radius: 20px 0px 0px 20px;

    transform: rotate(-90deg);
    /* Rotate for a diagonal ribbon effect */

    transform-origin: 100% 0%;
    /* Adjust origin for rotation */

    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);

    z-index: 1;
    /* Ensure the ribbon appears above other content */
}

/***********section 2 - problems/ wondering***********/



/***********section 3- weightloss and cardio***********/

/***********section 4- lifting bulky**********/

/***********section 5- train at home***********/

/********************FOOTER*******************/

.footer {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
  align-items: center;
  text-align: center;
  background-color: #272727;
  height: 200px;
}

.ifc2024 {
  color: white;
  opacity: 0.8;

}

.one ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  text-align: left;
}

.one ul a {
  color: white;
  font-size: 15px;
  transition: 0.3s;
  padding-left: 20px;
  text-decoration: none;
}

.one ul a:hover {
  color: #FFC436;
}

.two ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  text-align: left;
}

.two ul a {
  color: white;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.two ul a:hover {
  color: #FFC436;
}

.phone p {
  color: white;
  font-size: 15px;
  transition: 0.3s;
  text-align: center;
}

.phone p a{
  color: white;
  font-size: 15px;
  transition: 0.3s;
  text-decoration: none;
}

.phone p a:hover{
  color: #FFC436;
}

.phone i {
  color: white;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
}

.phone i:hover {
  color: #FFC436;
}

.copyright-mobile {
  display: none;
}

/**whatsapp**/

.whatsappbtn {
  position: fixed;
  width: 50px;
  height: 50px;    
  bottom: 30px;
  right: 10px;
  text-decoration: none;   
  z-index: 1;
}


/*****scroll up button*****/

.scrollupbutton {
    position: fixed;
    width: 50px;
    height: 50px;
    color: #272727;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    font-size: 50px;
}

/**Responsive****/


@media only screen and (max-width: 1200px) {

  .navbar {
      position: fixed;
      top: 0;
      left: 0;
      max-width: 300px;
      height: 100vh;
      width: 100%;
      background-color: #1b1b1b;

      display: flex;
      flex-direction: column;
      padding: 40px 20px;
      gap: 20px;
      transform: translateX(-100%);
      transition: 0.3s ;
      opacity: 0;
  }

  .menu-open:after {
      background-color: #2b2b2b86;
      width: 900px;
      /* right: 0; */
      left: 100%;
      height: 100vh;
      top: 0;
      position: absolute;
      content: "";
  }

  .navbar .freeconsultation {
      display: none;
  }

  .navicon {
      display: block;
  }

  .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      gap: 10px;
  }

  .menu-open {
      transform: translateX(0);
      opacity: 1;
  }

  .navbar .navicon {
      text-align: end;
      display: block;
  }

  .mobile-header {
      display: flex
  }

}


@media only screen and (max-width: 768px) {
  .footer {
      grid-template-columns: 1fr;
      height: auto;
  }

  .footer ul a {
      padding: 0;
      text-align: center;
  }

  .footer ul {
      text-align: center;
      gap: 0;
  }

  .one,
  .two {
      width: 80%;
      margin: 0 auto;
      text-align: center;
  }

  .one {
      margin-top: 20px;
  }

  .two {
      margin-bottom: 20px;
  }


  .copyright {
      display: none;
  }

  .copyright-mobile {
      display: block;
  }
  .calcidiv1 img{
      width: 600px;
      height: 400px;
  }
}

@media only screen and (max-width: 600px) {


  .logo img {
      width: 85%;
  }

  .calcidiv1 img{
      width: 350px;
      height: 300px;
  }

}

@media only screen and (max-width: 550px){
  .freeconsultation {
      font-size: 18px;
    
  }


}


@media only screen and (max-width: 500px) {

  h1 {
      font-size: 24px !important;
  }

  h2 {
      font-size: 22px !important;
  }

  .calltoaction{
      padding: 0;
      padding-top: 10px;
  }



}

@media only screen and (max-width: 460px) {
  .freeconsultation {
      font-size: 16px;
      padding: 2px 10px;
      margin-right: 0;
  }

  .header {
      padding: 0px 5px;
      gap: 5px;
  }

  .mobile-header {
      gap: 10px;
  }


}


/******************************************************
RESPONSIVE
******************************************************/

/* ===================================================
   LAPTOP / SMALL DESKTOP
   =================================================== */

@media only screen and (max-width: 1200px) {

    /* NAVIGATION */

    .navbar {
        position: fixed;
        top: 0;
        left: 0;

        width: 85vw;
        max-width: 300px;
        height: 100vh;

        background-color: #1b1b1b;

        display: flex;
        flex-direction: column;

        padding: 40px 20px;
        gap: 20px;

        transform: translateX(-100%);
        transition: 0.3s ease;

        opacity: 0;
    }

    .navbar a {
        padding-right: 0;
    }

    .navbar .freeconsultation {
        display: none;
    }

    .navbar .navicon {
        display: block;
        text-align: right;
    }

    .menu-open {
        transform: translateX(0);
        opacity: 1;
    }

    .navicon {
        display: block;
    }

    .mobile-header {
        display: flex;
    }

    .header {
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        gap: 10px;
    }


    /* HERO */

    .fpthero-content {
        padding: 40px;
    }


    /* MAIN CONTENT */

    .fpt-p {
        width: 80%;
        max-width: 1000px;
    }


    /* FAQ */

    .wrapper {
        max-width: 75%;
    }

}



/* ===================================================
   TABLET
   =================================================== */

@media only screen and (max-width: 900px) {

    /* HERO */

    .fpthero {
        height: auto;

        grid-template-columns: 1fr;
    }

    .fpthero-content {
        padding: 50px 40px;
    }

    .fpthero-image {
        height: 450px;
    }

    .fpthero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    /* MAIN SECTIONS */

    .fptsec {
        padding: 35px 20px;
    }

    .fpt-p {
        width: 90%;
        max-width: 900px;
        padding: 0;
    }

    .secimg {
        width: 85%;
    }


    /* FAQ */

    .wrapper {
        max-width: 90%;
    }


    /* PRICE CARDS */

    .pricecardsection {
        width: 100%;
        padding: 30px 20px;
    }

    .pcgrids {
        display: grid;
        grid-template-columns: 1fr;

        justify-items: center;

        width: 100%;

        gap: 30px;
    }

    .pricecard {
        width: 100%;
        max-width: 420px;
    }

    .pricecard h3 {
        font-size: 28px;
    }

    .pcamount {
        font-size: 30px;
    }

    .taglinepc {
        font-size: 16px;
    }


    /* FOOTER */

    .footer {
        grid-template-columns: repeat(2, 1fr);

        height: auto;

        padding: 40px 20px;

        gap: 30px;
    }

}



/* ===================================================
   MOBILE
   =================================================== */

@media only screen and (max-width: 768px) {

    /* HEADER */

    .logo {
        width: 110px;
    }

    .freeconsultation {
        font-size: 14px;
        padding: 8px 10px;
        margin-right: 10px;
    }


    /* HERO */

    .fpthero-content {
        padding: 40px 25px;
    }

    .fpthero-content h1 {
        font-size: 30px;
        line-height: 1.25;
    }

    .fpthero-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .fpthero-btn {
        margin-top: 20px;
        font-size: 15px;
    }

    .fpthero-image {
        height: 380px;
    }


    /* MAIN SECTIONS */

    .fptsec {
        padding: 35px 20px;
    }

    .fpt-p {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .fpt-p h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .fpt-p p {
        font-size: 16px;
        line-height: 1.7;
        margin: 18px 0;
    }


    /* SECTION IMAGES */

    .secimg {
        width: 100%;
        height: auto;
        margin: 20px 0;
    }


    /* FAQ */

    .wrapper {
        width: calc(100% - 40px);
        max-width: 100%;
    }

    .wrapper h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .accordion {
        font-size: 16px;
        padding: 15px;
        text-align: left;
        gap: 15px;
    }

    .pannel {
        padding: 15px;
    }

    .pannel p {
        font-size: 15px;
        line-height: 1.6;
    }


    /* PRICE CARDS */

    .pricecardsection {
        padding: 25px 20px;
    }

    .pricecard {
        width: 100%;
        max-width: 400px;
    }

    .pricecard h3 {
        font-size: 26px;
    }

    .amtp {
        font-size: 16px;
    }

    .pcamount {
        font-size: 28px;
    }

    .taglinepc {
        font-size: 15px;
    }


    /* FOOTER */

    .footer {
        grid-template-columns: 1fr;

        height: auto;

        padding: 35px 20px;

        gap: 20px;
    }

    .footer ul {
        text-align: center;
        gap: 8px;
    }

    .footer ul a {
        padding: 0;
        text-align: center;
    }

    .one,
    .two {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .copyright {
        display: none;
    }

    .copyright-mobile {
        display: block;
    }

}



/* ===================================================
   SMALL MOBILE
   =================================================== */

@media only screen and (max-width: 500px) {

    /* HEADER */

    .header {
        padding: 0 10px;
    }

    .logo {
        width: 100px;
    }

    .mobile-header {
        gap: 8px;
    }

    .freeconsultation {
        font-size: 14px;
        padding: 6px 8px;
        margin-right: 0;
    }

    .navicon {
        font-size: 28px;
    }


    /* HERO */

    .fpthero-content {
        padding: 35px 20px;
    }

    .fpthero-content h1 {
        font-size: 26px;
    }

    .fpthero-content p {
        font-size: 15px;
    }

    .fpthero-btn {
        width: 100%;
        max-width: 320px;

        padding: 12px;

        font-size: 15px;
    }

    .fpthero-image {
        height: 320px;
    }


    /* CONTENT */

    .fptsec {
        padding: 30px 18px;
    }

    .fpt-p h2 {
        font-size: 23px;
    }

    .fpt-p p {
        font-size: 15px;
        margin: 16px 0;
    }

    .fptsecbtn {
        width: 100%;
        max-width: 300px;

        padding: 12px;

        font-size: 15px;
    }


    /* FAQ */

    .wrapper {
        width: calc(100% - 30px);
    }

    .wrapper h1 {
        font-size: 23px;
    }

    .accordion {
        font-size: 15px;
        padding: 14px 12px;
    }


    /* PRICE CARDS */

    .pricecardsection {
        padding: 20px 15px;
    }

    .pricecard {
        padding: 18px;
    }

    .pricecard h3 {
        font-size: 23px;
    }

    .pcamount {
        font-size: 27px;
    }

    .taglinepc {
        font-size: 14px;
    }

    .pcbtn {
        font-size: 15px;
    }


    /* WHATSAPP */

    .whatsappbtn {
        width: 45px;
        height: 45px;
        right: 8px;
        bottom: 8px;
    }

}



/* ===================================================
   VERY SMALL MOBILE
   =================================================== */

@media only screen and (max-width: 380px) {

    .fpthero-content {
        padding: 30px 16px;
    }

    .fpthero-content h1 {
        font-size: 24px;
    }

    .fpthero-image {
        height: 280px;
    }

    .fptsec {
        padding: 25px 15px;
    }

    .fpt-p h2 {
        font-size: 21px;
    }

    .accordion {
        font-size: 14px;
    }

}