
/* START DEFAULT  */


/* START GOOGLE FONTS HERE  */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* END GOOGLE FONTS HERE  */


/* START SCRALL BAR HERE  */
/* width */
::-webkit-scrollbar {
    width: 20px;
    background-color: var(--color);
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px gray;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--background-color);
    border-radius: 10px;
  }




/* END SCROLLBAR HERE  */

:root
{
    --background-color:#ffc410;
    --color:#241f20;
    --font-site: "Open Sans", sans-serif;
    --error-background:#CC0000;
}

body , html
{
    scroll-behavior: smooth !important;
}

*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.container
{
    width: 80%;
    height: 100%;
    margin: auto;
}


/* END DEFAULT  */


/* START NAVBAR */
nav
{
    width: 100%;
    padding: 25px 0px;
    background-color: var(--color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: italic;
}
nav .container 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav nav__logo 
{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

nav .nav__logo a
{
    text-decoration: none;
    font-size: 23px;
    color: var(--background-color);

}

nav .nav__logo:hover
{
    transform: scale(1);
}



nav .nav__content 
{
    list-style: none;
}

nav .nav__content  li 
{
    display: inline-block;
    padding: 10px 15px;
}


nav .nav__content  li a 
{
    text-decoration: none;
    font-size: 18px;
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
}

nav .nav__content  li a:hover 
{
    opacity: 0.5;
}



.contact__btn a 
{
    font-size: 25px !important;
}


.nav__hide
{
    display: none !important;
}


nav .burger 
{
    font-size: 23px;
    cursor: pointer;
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
    display: none;
}


/* START SCREENS  */
@media(max-width:540px)
{
    nav 
    {
        position: static;
        top: 0px;
        z-index: 3;
    }
    /* nav.active 
    {
        position: fixed !important;
        top: 0px;
    } */
  .nav__content
  {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color);
    color: var(--background-color);
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    z-index: 99 !important;
  }
  .nav__content.active 
  {
    transform: translateX(0%) !important;
  }

  .nav__content li 
  {
    margin: 20px 0px;
  }

  .burger
  {
    display: block !important;
    color: var(--background-color);
    position: static;
    right: 20px;
    z-index: 99;
  }
  .burger.active 
  {
    position: fixed;
    right: 20px;
  }
}


/* END SCREENS HERE  */


/* END NAVBAR  */


/* START HEADER HERE  */
header
{
    width: 100%;
    height: 100vh;
    background-image: url(../images/pexels-leandro-boogalu-5876-1390403.jpg);
    background-size: cover;
    background-attachment: fixed;
    font-family: var(--font-site);
    text-transform: capitalize;
    font-style: italic;   
}

header .container 
{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header__content 
{
    text-align: center;
}

header .header__content  h2
{
    font-size: 65px;
    margin: 10px 0px;
}
header .header__content  p
{
    margin: 10px 0px;
}


header .header__content  a 
{
    text-decoration: none;

}

header .header__content  a button
{
    padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 10px 0px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .header__content  a button:hover 
{
    background-color: var(--color);
    color: var(--background-color);

}

/* small screens */
@media(max-width:540px)
{
   header 
   {
  
    background-image: url('https://images.pexels.com/photos/841131/pexels-photo-841131.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
   }

   .header__content  h2 , p
   {
        color: var(--background-color);
   }


   .header__content a button
   {
        color: var(--color) !important;
        background-color:var(--background-color) !important;
        transition: all 0.3s ease-in-out;
   }

   .header__content a button:hover
   {
    background-color: var(--color) !important;
    color: var(--background-color) !important;
   }


}
/* END HEADER HERE */

/* START ABOUT ME HERE */
#about
{
    padding: 40px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    font-style: italic;
    text-align: center;
}

#about h3 
{
    margin: 20px 0px;
    letter-spacing: 4px;
    position: relative;


}

#about h3::after
{
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

#about p 
{
    padding: 20px 0px;
}

/* END ABOUT ME HERE  */


/* START TRANSFORMATION HERE  */

.Transformations 
{
    width: 100%;
    height: 100% !important;

}


.Transformations .splide__arrow--next
{
    background-color: var(--background-color) !important; 
    color: var(--color) !important;
}
.Transformations
 .splide__arrow--prev
{
    background-color: var(--background-color) !important;
    color: var(--color) !important;
}



.Transformations .splide__slide img {
    max-width: 100%;
    height: auto;
  }




  .splide__pagination__page
  {
    background-color: var(--color) !important;
  }

/* END TRANSFORMATION HERE  */

/* DIET SECTION START  */
.diet 
{
    width: 100%;
    height: 100vh;
    background-image:  linear-gradient(to right bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), url('../images/Diet.jpg');
    background-size: cover;
       /* background-attachment: fixed; */
}


.diet .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.diet a 
{
     text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;

}


.diet a:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}


/* SMALL SCREEN START  */
@media(max-width:540px)
{
    .diet 
    {
        background-size: cover;
    }
}


/* SMALL SCREEN  END  */

/* DIET   SECTION END  */


/* WORKOUT SECTION START  */
.workout
{
    width: 100%;
    height: 100vh;
    background-image:  linear-gradient(to right bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), url('../images/workout.jpg');
    background-size: cover;
    /* background-attachment: fixed; */
}


.workout .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.workout a 
{
     text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;

}


.workout a:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}


/* SMALL SCREEN START  */
@media(max-width:540px)
{
    .workout 
    {
        background-size: cover;
    }
}


/* SMALL SCREEN  END  */

/* WORKOUT   SECTION END  */








/* GYM SECTION START  */
.gym 
{
     width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),   url('../images/gym.jpg');
    background-size: cover;
       /* background-attachment: fixed; */

    
}

.gym .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.gym .gym__content 
{
    text-align: center;
}

.gym__content h2 
{
    font-size: 65px;
    margin: 10px 0px;
    color: var(--background-color);
}



/* GYM SECTION END  */


/* START STRUGGLE SECTION HERE  */
.struggle 
{
    padding: 60px 0px ;
    background-color: var(--color);
    color: var(--background-color);
   

}

.struggle h3
{
      margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
    text-align: center;
    font-size: 19px;
}

.struggle span
{
    display: block;
    margin: 20px 0px;
    font-size: 10px !important;
}


.struggle h3::after
{
       content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}


.struggle .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.struggle .struggle__content 
{
    text-align: center;
    margin: 30px 0px;
    padding: 30px 50px ;
    border: 1px solid var(--color);
    border-radius: 15px;
    color: var(--color);
    background-color: var(--background-color);
}


.struggle .struggle__content .struggle__content__icon
{
    font-size: 23px ;
    margin: 10px 0px;
}


.struggle .struggle__content__title 
{
    margin: 10px 0px;
}


 
.struggle .struggle__content__text
{
    margin: 10px 0px;
    color: var(--color) !important;
}


/* START SMALL SCREEN HERE  */
@media(max-width:540px)
{

    .struggle .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .struggle__content 
    {
        border: none !important;
    }
    .struggle .struggle__content__text p
{
    margin: 10px 0px;
    color: var(--color) !important;
}

}


/* END SMALL SCREEN HERE */
/* END STRUGGLE SECTION HERE  */




/* START STEPS SECTION HERE  */
.steps 
{
    padding: 80px 0px;
    background-color: var(--color);
    color: var(--background-color);

}

.steps .container 
{
    display: flex;
    flex-direction: column;
    
}

.steps .steps__content__step
{
    margin: 40px 0px;
}

.steps .steps__content__step h4 
{
    font-size: 18px;
    font-style: italic;
}


.steps .steps__content__title
{

    margin: 20px 0px;

}

.steps .steps__content__title h2 span
{
    font-size: 18px;
    font-style: normal;
}


.steps .steps__content__title h2 
{
    font-style: italic;
    font-size: 30px;
}


.steps__content__text 
{
    margin: 30px 0px;
}

/* END STEPS SECTION HERE  */



/* START CLASS SECTION HERE  */
.class 
{
    width: 100%;
    height: 650px;
    background-image: url('./../images/sport1.jpg');
    background-size: cover;
    font-style: italic;
}

.class .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.class a 
{
    padding: 10px 25px;
    text-decoration: none;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 10px 0px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.class a:hover 
{
      background-color: var(--color);
    color: var(--background-color);
}




/* END CLASS SECTION HERE  */













/* START SERVICES HERE  */
.services
{
    width: 100%;
    padding: 40px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    font-style: italic;
    text-align: center;
}

.services h3
{
    margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
}




.services h3::after
{
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.services .container 
{
     flex-direction: column;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}


.services .services__content
{
    margin: 15px 0px;
    border: 2px solid var(--background-color);
    padding: 24px 25px;
    border-radius: 10px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.services .services__content:hover
{
    background-color: var(--background-color);
    color: var(--color);
    transform: scale(1.2);
}

.services__content:hover a 
{
    background-color: var(--color);
    color: var(--background-color);
}

.services .services__content p 
{
    margin: 15px 0px;
}

.services .services__content  a 
{
    text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;

}   

.services .services__content  a:hover 
{
    color: var(--background-color);
    color: var(--color);
}

/* SMALL SCREENS HERE  */
@media(max-width:540px)
{
    .services .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .services .services__content
    {
        transform: scale(1);

        margin: 20px 0px;
    }
    .services .services__content:hover
    {
        transform: scale(1);
        color: var(--color);
        background-color: var(--color);
    }

    .services .services__content:hover h2 
    {
         color: var(--background-color);
    }

}



/* END SMALL SCREENS HERE  */

/* END SERVICES HERE  */


/* START CONTACT  HERE*/
.contact 
{
    padding: 40px 0px ;
    width: 100%;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    font-style: italic;
    text-align: center;
}

.contact  h3 
{

    margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
}

.contact h3::after
{
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}



.contact .container 
{
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    
}

.contact contact__content_insta,

.contact__content_whats,

.contact__content_phone
{
    margin: 20px 0px;
    transition: all 0.3s ease-in-out;
 
}


.contact a 
{
    text-decoration: none;
    color: var(--background-color);
    font-size: 23px;
}
.contact a:hover 
{
    opacity: 0.5;
}

/* SMALL SCREENS  */
@media(max-width:540px)
{
    .contact .container 
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* END CONTACT HERE  */

/* START FOOTER HERE */
footer
{
    padding: 25px 0px;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: italic;
}
footer .container 
{
    display: flex;
    align-items: center;
    justify-content: center;
}


/* END FOOTER HERE  */



/* START LOADER PAGE HERE  */

.loading
{
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--color);
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}


.loading.active 
{
    transform: translateY(100%) !important;
}

.loader {
    width: 64px;
    height: 64px;
    position: relative;
    animation: rotate 1.5s ease-in infinite alternate;
  }
  .loader::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--background-color);
    background: currentColor;
    width: 64px;
    height: 32px;
    border-radius: 0 0 50px 50px;
  }
  .loader::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    background: #FFF;
    width: 8px;
    height: 64px;
    animation: rotate 1.2s linear infinite alternate-reverse;
  }
  
  @keyframes rotate {
    100% { transform: rotate(360deg)}
  }
        






/* END LOADER HERE */



/* STRAT POPUPS */
.pop__ups
{
    width: 350px;
    height: 200px !important;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    margin: 120px auto;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    padding: 10px 25px;
    border-radius: 15px;
    font-style: italic;
    z-index: 99999;
    transform: translateY(-330%);
    transition: all 0.3s ease-in-out;

}

.pop__ups.active 
{
    transform: translateY(0%);
}
.pop__ups button
{
    float: right;
    padding: 5px 10px;
    font-size: 15px;
    color: var(--color);
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--background-color);
    transition: all 0.3s ease-in-out;

}

.pop__ups button:hover 
{
    background-color: var(--color);
    color: var(--background-color);
}
.pop__ups .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pop__ups p 
{
    margin: 20px 0px;
}
.pop__ups a  
{
    text-decoration: none;
    font-size:18px;
    padding: 10px 25px;
    border-radius: 15px;
    background-color: var(--background-color);
    color: var(--color);
    transition: all 0.3s ease-in-out;
}

.pop__ups a:hover 
{
    background-color: var(--color);
    color: var(--background-color);
}

/* END POPUPS  */


/* START NEWS POPUPS HERE  */
.news 
{
    width: 100%;
    height: 60px ;
    background-color: var(--background-color);
    color: var(--color);
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    font-style: italic;
}


.news .news__content 
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.news .news__content span
{
    font-weight: 900;
    background-color: var(--color);
    color: var(--background-color);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 18px;

}


/* END NEWS POPUPS HERE */


/* START CAL SECTION HERE  */
.cal 
{
    position: fixed;
    left: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--color);
    color: var(--background-color);
    z-index: 2000000;
    font-family: var(--font-site);

    transition: all 0.8s ease-in-out;
}

.cal.active 
{
   left: 0% !important;
}
.cal .cal__close
{
    text-align: right;
    margin: 20px ;
    font-size: 23px;
    cursor: pointer;
}


.cal .cal__title
{
    text-align: center;
    margin: 10px;
    font-size: 30px;
}


.cal .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.cal .cal__content
{
   
    margin-bottom: 10px ;
}

.cal .cal__content input 
{
    width: 100%;
    padding: 10px 40px;
    border: none;
    outline: none;
    border-radius: 15px;
    text-align: left;

}

.cal .cal__content  
{
    text-align: center;
}

.cal .cal__content select 
{
     width: 100%;
    padding: 10px 80px;
    border: none;
    outline: none;
    border-radius: 15px;
    text-align: left;
}
.cal .cal__content label 
{
    margin: 10px 0px;
}

.cal .cal__content  button
{
    padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    outline: none;
    border: none;
    cursor: pointer;
    margin: 20px;
    transition: all 0.3s ease-in-out;
}
.cal .cal__content  button:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}

.cal__result 
{
    transition: all 0.4s ease-in-out;
}

/* END CAL SECTION HERE  */


/* START CALBTN SECTION HERE  */
.scroll-btn
{
    width: 42px ;
    height: 45px ;
    position: fixed;
    left: 30px;
    top: 200px ;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;
    transition: all 0.3s ease-in-out;
}
.scroll-btn a
{
    text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;

}


.scroll-btn:hover
{
    background-color: var(--color);

}

.scroll-btn a:hover  
{
    color: var(--background-color) !important;
}
.show-bb
{
    top: 50px !important;
    opacity: 1 !important;
}



/* END CALBTN SECTION HERE  */


/* START ALERT__ERORR SECTION HERE  */

.alert__erorr
{
    width: 100%;
    height: 70px;
    background-color: var(--error-background);    
    position: fixed;
    top: -100%;
    left: 0px;
    font-family: var(--font-site);
    z-index:  2300000;
    transition: all 0.8s ease-in-out;
}
.alert__erorr.active 
{
    top: 0% !important;
}

.alert__erorr  .alert__erorr__close
{
    text-align: right;
    margin: 10px;
    cursor: pointer;
}

.alert__erorr .container
{
    display: flex;
    /* align-items: center; */
    justify-content: center;
}




/* START SMALL SCREEN  HERE */
@media(max-width:540px)
{
    .alert__erorr__content p 
    {
        color: var(--color);
    }

}


/* END SMALL SCREEN HERE  */






/* END ALERT__ERORR SECTION HERE */



/* START FOOOD SECTION HERE  */
.food
{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    bottom: 0px;
    top: 100%;
    right: 0px;
    background-color: var(--color);
    color: var(--background-color);
     z-index: 2000000;
    font-family: var(--font-site);
    transition: all 0.8s ease-in-out;

}


.food.active 
{
    top:0px!important;
}



.food .food__close
{
    margin: 20px;
    text-align: right;
    font-size: 23px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.food .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.food .lists 
{
    list-style: none;
    transition: all 0.5s ease-in-out;
    text-align: center;
}


.food .lists li 
{
    display: inline-block;
    padding: 10px 25px;
   
}



.food .lists li button
{
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

}

.food .lists li button:hover
{
    background-color: var(--color);
    color: var(--background-color);
}




.food .food__content
{
    margin: 30px 0px;
    text-align: center;
}


.food .food__content__images
 {
        max-width: 100%;
        margin: 20px 0px;
        
        transition: all 0.5s ease-in-out;
 }

 .food .food__content__images img
 {
    max-width: 320px;
     border: 4px solid #FFF;
     /* box-shadow: 5px 10px 8px #888888; */
 }

 .food .food__content__btn 
 {
    margin: 30px 0px;
    text-decoration: none;
    /* font-size: 23px; */
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
   
    transition: all 0.5s ease-in-out;

 }



  .food .food__content__btn:hover 
  {
    background-color: var(--color);
    color: var(--background-color);
  }


  /* START SMALL SCREENS HERE  */
  @media(max-width:540px)
  {
    .food__close
    {
        margin: 20px  !important;
    }

  
    .food .food__content
    {
        margin: 0px 0px !important;
    }

    .food__content__images 
    {
        margin: 10px 0px !important;
    }
    .food__content__images img 
    {
        max-width: 200px !important;
    }

    .food__content__btn 
    {
        margin: 15px 0px !important;
    }



  }





  /* END SMALL SCREENS HERE  */

/* END FOOD SECTION HERE  */


/* START FOOD BTN SECTION HERE  */
.food-btn
{
    width: 42px ;
    height: 45px ;
    position: fixed;
    /* left: 30px;
    top: 140px ; */

     /* left: 30px;    original*/
     left: 100%;
    top: 270px ;

    /* 
         left: 30px;
        top: 270px ;
    
    */


    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;
    transition: all 0.3s ease-in-out;
}
.food-btn a
{
    text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;

}


.food-btn:hover
{
    background-color: var(--color);

}

.food-btn a:hover  
{
    color: var(--background-color) !important;
}
.food-show-bb
{
    top: 30px !important;
    opacity: 1 !important;
}



/* END FOOD BTN SECTION HERE  */



/* START DIET-BTN SECTION HERE  */
.diet-btn 
{
     width: 42px ;
    height: 45px ;
    position: fixed;
    /* left: 30px;
    top: 270px ; */


    /* left: 30px; original  */
    left: 100%;
    top: 140px ;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;

   
    transition: all 0.3s ease-in-out;
    
}



.diet-btn a
{
    text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;
  
     
}


.diet-btn a i 
{
      animation-name: diet;
    animation-duration: 1s;
    animation-iteration-count: infinite;   
}

.diet-btn:hover
{
    background-color: var(--color);

}

.diet-btn a:hover  
{
    color: var(--background-color) !important;
}
.diet-btn-show-bb
{
    top: 30px !important;
    opacity: 1 !important;
}




@keyframes diet {
    0% 
    {
        transform: rotate(180deg);
    }

  
    25%
    {
        transform: rotate(90deg);
    }

    50%
    {
         transform: rotate(45deg);  
    }

    100%
    {
        transform: rotate(0deg);
    }

}





/* END DIET-BTN SECTION HERE  */



/* START DIET CON SECTION HERE  */
.diet__con 
{
    position: fixed;
      right: 0px;
    left: -100%;
    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 2000000;
     transition: all 0.8s ease-in-out;
    
}


.diet__con.active
{
    left: 0% !important;
}

.diet__con .diet__con__close
{
    font-size: 23px;
    text-align: right;
    margin: 20px;
    cursor: pointer;
     transition: all 0.8s ease-in-out;

}
.diet__con .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}


.diet__con .diet__con__content__images 
{
    display: inline-block;
}

.diet__con__content__images img
{
    max-width: 350px ;
    margin: 35px ;
    border: 4px solid #FFF;
}


.diet__con .diet__con__content__btn 
{
    margin: 30px 0px;
    text-decoration: none;
    /* font-size: 23px; */
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
    transition: all 0.5s ease-in-out;
}


.diet__con .diet__con__content__btn:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}



/* START SMALL SCREENS HERE  */
@media(max-width:540px)
{

    .diet__con .diet__con__close
    {
        margin: 10px;
    }

    .diet__con .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .diet__con__content__images img
    {
        max-width: 200px;
        /* margin: 30px 0px; */
    }

    .diet__con .diet__con__content__btn 
    {
        margin: 10px 0px;
    }
}



/* END SMALL SCREENS HERE  */

/* END DIET CON SECTION HERE  */



/* START SUB SECTION HERE  */
.sub
{
       width: 42px ;
    height: 45px ;
    position: fixed;
    right: 10px;
    bottom: 140px ;
    z-index: 9 ;
    color: var(--background-color);
    font-family: var(--font-site);
    background-color: var(--color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    transform: translateX(150%);
    opacity:1;
    transition: all 1.5s ease-in-out;
}

.sub.active 
{
    transform: translateX(0%);
}


.sub a 
{
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    font-size: 18px;
}





.sub__btn  i 
{
    animation-name: sub1;
    animation-duration: 1s;
    animation-iteration-count: infinite;   
}






@keyframes sub1 
{
    0%
    {
        transform: scale(1.2);
    }
    50% 
    {
         transform: scale(1.1);
    }
    100%
    {
        transform: scale(1);
    }


}


/* END SUB SECTION HERE  */


/* START SUB__CONTENT SECTION HERE  */
.sub__content
{
    position: fixed;
      right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 2000000;
    overflow-y: auto;
    text-align: center;
    padding: 6px;
    transform: translateX(100%);
     transition: all 0.8s ease-in-out;
}

.sub__content.active 
{
    transform: translateX(0%);
}




.sub__content__close
{
    font-size: 23px;
    text-align: right;
    margin: 10px;
    cursor: pointer;
}




.sub__content .container 
{
   display: flex;
   align-items: center;
   justify-content: center;
}


.sub__content .services__content
{
    margin: 15px 0px;
    border: 2px solid var(--background-color);
    padding: 24px 25px;
    border-radius: 10px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.sub__content .services__content:hover
{
    background-color: var(--background-color);
    color: var(--color);
    transform: scale(1.2);
}

.sub__content  .services__content:hover a 
{
    background-color: var(--color);
    color: var(--background-color);
}

.sub__content .services__content p 
{
    margin: 15px 0px;
}

.sub__content .services__content  a 
{
    text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;

}   

.sub__content .services__content  a:hover 
{
    color: var(--background-color);
    color: var(--color);
}

/* SMALL SCREENS HERE  */
@media(max-width:540px)
{
    .sub__content 
    {
        padding: 20px 0px;
    }
    .sub__content .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
        height: 100%;
    }

    .sub__content .services__content
    {
        transform: scale(1);
        
        margin: 20px 0px;
    }
    .sub__content .services__content:hover
    {
        transform: scale(1);
        color: var(--color);
        background-color: var(--color);
    }

    .sub__content .services__content:hover h2 
    {
         color: var(--background-color);
    }

}








/* END SCREEN  */














/* END SUB__CONTENT SECTION HERE  */


/* START LANG-BTN SECTION HERE  */
.lang-btn
{
       width: 42px ;
    height: 45px ;
    position: fixed;
    left: 30px;
    top: 270px ;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
  
    opacity:1;
    transition: all 0.3s ease-in-out;

}

.lang-btn a 
{
      text-decoration: none;
    color: inherit;
    background-color: inherit;
    font-size: 24px;    
}

.lang-btn:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}



/* END LANG-BTN SECTION HERE  */




/*  START LANG__CONTENT SECTION HERE   */
.lang__content 
{
      position: fixed;
      right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 2000000;
    overflow-y: auto;
    text-align: center;
    padding: 6px;   
    transform: translateY(-100%);
     transition: all 0.8s ease-in-out;
}

.lang__content.active 
{
    transform: translateY(0%);
}




.lang__content .lang__content__close
{
    text-align: right;
    margin: 15px;
    font-size: 23px;
    cursor: pointer;
}

.lang__content .container
{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang__content img 
{
    max-width: 150px;
    border-radius: 15px ;
    border: 3px solid var(--background-color);
    padding: 4px;
}



.lang__content__flag__en , .lang__content__flag__ar , 
.lang__content__flag__sp 
{
    margin: 15px 0px;
}


/* SMALL SCREEN HERE  */

@media(max-width:540px)
{
    .lang__content .container
    {
        justify-content: flex-start !important;
    }
}


/* END SMALL SCREEN  */

/* END LANG__CONTENT SECTION HERE  */








/* START PAGE 2 HERE  */

.header__services 
{
    width: 100%;
    height: 100vh;
    background-image: url('https://images.pexels.com/photos/163351/girl-boxer-ring-boxing-pear-163351.jpeg');
    background-size: cover;
    background-attachment: fixed;
}

.header__services h2 
{
    font-size: 65px;
    color: var(--background-color);
}


/* SMALLL SCREEN HERE  */
@media(max-width:540px)
{
    .header__services 
    {
        background-attachment: unset !important;
        background-image: url('https://images.pexels.com/photos/136405/pexels-photo-136405.jpeg');
        background-size: cover;
    }
    .header__services h2 
    {
        font-size: 45px;
    }
}



/* END SMALL SCREEN  */


/* START SCROLL__BTN__CALL SECTION HERE  */

.scroll__btn__call
{
    width: 42px ;
    height: 45px ;
    position: fixed;
    right: -100%;
    top: 40px;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    transition: all 1.5s ease-in-out;
}

.scroll__btn__call.active 
{
    right: 30px;
}

.scroll__btn__call a 
{
    text-decoration: none;
    font-size: 23px; 
    color: inherit;
}





/* END  SCROLL__BTN__CALL SECTION HERE  */






/* START OUR CLIENTS SECTION HERE  */

.clients
{
    padding: 60px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    text-align: center;
}

.clients h3 
{
     margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
}


.clients h3::after
{
     content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%); 
}



.clients .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.clients .clients__image
{
    margin: 15px 0px;
    transition: all 0.6s ease-in-out;
}

.clients .clients__image img 
{
    max-width: 500px;
    border: 3px solid var(--background-color);
    padding: 4px;
    border-radius: 15px;
}




.clients  .clients__content button 
{
    padding: 5px 15px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 20px;
    margin: 15px 20px ;
    font-size: 23px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.clients  .clients__content button:hover 
{
    background-color: var(--color);
    color: var(--background-color);
}


/* SMALL SCREENS HERE  */
@media(max-width:540px)
{
    .clients .clients__image  img 
    {
        max-width: 300px !important;
    }
}


/* END SMALL SCREEN HERE  */
/* END OUR CLIENTS SECTION HERE  */


/* END PAGE 2 HERE  */