* {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
}

html {
    scroll-behavior: smooth;
}


@font-face {
    font-family: Metropolis;
    src: url(../font/Metropolis-Black.otf);
}

.translate {
    position: fixed;
    z-index: 4;
    right: 2vw;
    top: 4vh;
    padding: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

.translate p {
    margin-bottom: 0;
    color: rgb(255, 255, 255, 0.6);
}

.translate:hover {
    background-color: #1A1A1A;
    border-radius: 8px;
}

.navimg {
    width: 20px;
    object-fit: cover;
}

#navpage {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    list-style: none;
    margin-right: 1vw;
    background-color: #2C2C2C;
    height: 0px;
    width: fit-content;
    padding-left: 0;
    position: fixed;
    right: 1vw;
    top: 10vh;
    padding-left: 4px;
    padding-right: 4px;
    border-radius: 8px;
    overflow: hidden;
    transition: height 0.5s;
    z-index: 5;
}

#navpage.open {
    height: 80px;
}

#navpage li {
    text-align: right;
}

#navpage li a {
    font-size: 14px;
    text-decoration: none;
    color: rgb(255, 255, 255, 0.6);
}

#navpage li a:hover {
    background-color: #1A1A1A;
    padding: 2px;
    border-radius: 4px;
}

header {
    background-image: url(../img/BG.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 100vh;
    padding-top: 30vh;
}

.head {
    width: 100vw;
    position: fixed;
    z-index: 4;
    margin: auto;
    display: flex;
    justify-content: space-around;

}

body {
    background-color: rgb(12, 12, 12);
    overflow-x: hidden;
}

@keyframes appear {
    0% {
        opacity: 0;
        scale: 0.5;
    }

    100% {
        opacity: 1;
        scale: 1;
    }
}



/* ------web's nav-bar-------- */
.link {
    height: 8vh;
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2%;

}

.web {
    height: 70%;
    width: 15%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.name {
    height: 100%;
    width: 54%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.web h1 {
    font-size: 20px;
    text-transform: uppercase;
    color: white;
    font-family: Metropolis;
    padding: 0;
    margin: 0;
}

.web img {
    width: 100%;
    object-fit: contain;
}

.menu1 {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu1 li {
    display: inline-block;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

a {
    text-decoration: none;
}

.menu1 li:hover {
    color: #92c83e;
}

.menu1-1 {
    position: absolute;
    background-color: rgb(12, 12, 12, 0.8);
    width: 11%;
    border-radius: 0px 0px 20px 20px;
    padding: 20px 10px 10px 15px;
    top: 70%;
    right: 21%;
    display: none;
    z-index: 3;
}

.menu1-1 li {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    list-style: none;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu1-1 li:hover {
    color: #92c83e;
}

/* -----end-------*/
/*-------mobile's nav-bar ------*/
.mobile {
    display: none;
    width: 100vw;
    height: 8vh;
}

.logo {
    background-color: rgb(12, 12, 12);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 5%;
}

.logo img {
    width: 8%;
    object-fit: contain;
}

.btn0 {
    position: absolute;
    right: 16%;
    top: 16%;
}

.btn0:hover {
    opacity: 0.8;
    cursor: pointer;
}

/*------end------*/
/*-------mobile's menu bar------*/
.menu2 {
    position: absolute;
    background-color: rgb(12, 12, 12, 0.8);
    width: 100%;
    border-radius: 0px 0px 20px 20px;
    padding: 20px 10px 10px 24px;
    top: 100%;
    right: 0%;
    display: none;
}

.menu2 li {
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    list-style: none;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu2 li:hover {
    color: #92c83e;
}

.menu2-1 {
    position: absolute;
    background-color: rgb(12, 12, 12, 0.8);
    width: 33%;
    border-radius: 020px 0px 20px 20px;
    padding: 20px 10px 10px 15px;
    top: 218%;
    right: 40%;
    display: none;
    z-index: 3;
}

.menu2-1 li {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    list-style: none;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu2-1 li:hover {
    color: #92c83e;
}

/*-------end--------*/
/*------content of header-------*/
.body {
    width: 80%;
    margin: auto;
}

.body h1 {
    color: #92c83e;
    font-size: 70px;
    font-family: Metropolis;
    text-align: right;
    text-transform: uppercase;
}

.body p {
    color: white;
    font-size: 15px;
    font-weight: 400;
    text-align: right;
    margin-top: 2%;
    margin-bottom: 2%;
}

.btn1 {
    display: flex;
    justify-content: flex-end;
}

.btn1 button {
    padding: 8px 20px 8px 20px;
    border: 1px #92c83e solid;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
    margin-left: 2%;
}

.btn1-1 {
    background-color: #92c83e;
    color: white;
}

.btn1-1 a {
    color: white;
}

.btn1-2 a {
    background-color: rgb(12, 12, 12, 0);
    color: #92c83e;
}

.btn1-1:hover {
    background-color: #3D5715;
}

.btn1-2 {
    background-color: rgb(12, 12, 12, 0);
    color: #92c83e;
}

.btn1-2:hover {
    background-color: #92c83e;
    color: white;
}

.btn1-2:hover a {
    background-color: #92c83e;
    color: white;
}
/*---------end-----------*/

/*---menubar mobile--*/
.navbarbg {
    width: 100vw;
    height: 14vh;
    background: linear-gradient(0deg, rgba(2, 0, 36, 0) 0%, rgba(12, 12, 12, 1) 25%);
    position: sticky;
    top: 0;
    z-index: 3;
}
/*---------end-----------*/

/*---ads vid--*/


.ads-vid {
    display: none;
}

.ads-vid-1 {
    width: 80%;
}

.unhide {
    position: fixed;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 5;
    top: 2vh;
    width: 100vw;
    height: 100vh;
    background-color: rgb(12, 12, 12, 0.8); 
    margin-top: -2vh;
}

/*--------ABOUT US-----------*/
section h1 {
    color: #92c83e;
    font-size: 68px;
    font-family: Metropolis;
    text-transform: uppercase;
}

.aboutus {
    width: 80%;
    margin: auto;
    height: fit-content;
    padding-top: 14vh;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
    position: relative;
}

.aboutus h1 {
    text-align: center;
    margin-bottom: 4vh;
}

.aboutus h2 {
    color: #92c83e;
    font-size: 54px;
    font-family: Metropolis;
    text-transform: uppercase;
    text-align: left;
}

.aboutus p {
    color: rgb(255, 255, 255, 0.6);
    text-align: left;
    font-size: 15px;
}

.aboutus .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.navbtn {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}

.text p .navtext {
    color: rgba(146, 200, 62, 0.6);
}

.text .navarrow {
    font-size: 15px;
    animation: navarrow 1s ease infinite;
}

.text .navarrow a {
    color: rgba(146, 200, 62, 0.6);
}

@keyframes navarrow {
    0% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(10px);
    }
}

.pic {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    align-items: center;
}

.aboutus img {
    width: 240px;
    object-fit: contain;
    border-radius: 40px;
    box-shadow: 0px 0px 12px 0px #ffff;
    animation: aboutusimg 2s ease infinite;
}

@keyframes aboutusimg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}


/*--------end---------*/
/*--------PARAMETER------*/
.para {
    width: 80%;
    margin: auto;
    padding-top: 10vh;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}

.para h2 {
    color: #92c83e;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0px 0px 5px #92c83e;

}



.para h3 {
    color: white;
    font-size: 28px;
    text-align: center;
}

/*--------end----------*/
/*--------EXPLORE--------*/
/*---------workouts-----------*/
.explore {
    width: 80%;
    margin: auto;
    padding-top: 14vh;
}

.explore h1 {
    text-align: center;
}

.explore h2 {
    color: #92c83e;
    -webkit-text-fill-color: rgb(12, 12, 12);
    -webkit-text-stroke-color: #92c83e;
    -webkit-text-stroke-width: 4px;
    text-transform: uppercase;
    font-size: 60px;
    font-family: Metropolis;
    text-align: center;
    margin-bottom: 0vh;
}

.explore h3 {
    color: rgb(255, 255, 255, 0.9);
    font-size: 32px;
    text-transform: uppercase;
    font-family: Metropolis;
    text-align: center;
}

.explore p {
    color: rgb(255, 255, 255, 0.6);
    font-size: 15px;
    width: 80%;
    text-align: center;
    margin: auto;
}

.bgpic1 {
    position: absolute;
    z-index: -1;
    top: 150%;
    left: 0%;
    width: 100vw;
}

.workouts {
    position: relative;
    overflow: hidden;
    height: 100vh;
    margin-bottom: -12vh;
    animation: appear linear;
    animation-timeline: view(20%);
    animation-range: entry 0;
}




.workouts p {
    height: 12vh;
    margin: auto;
}

/*---------carousel1-----------*/
.carousel {
    margin-top: 4vh;
}

#carousel1 {
    margin: auto;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#carousel1 .img {
    position: relative;
    width: 15%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.684);
    transition: all ease-in-out 0.5s;
    overflow: hidden;
}

#carousel1 .img:hover {
    width: 25%;
}

#carousel1 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#carousel1 .text1 {
    position: absolute;
    bottom: 3%;
    z-index: 1;
    height: 90px;
    width: 100%;
    overflow: hidden;
}

#carousel1 h4 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    font-family: sans-serif;
}

#carousel1 h5 {
    font-size: 12px;
    font-weight: lighter;
    color: white;
    font-family: sans-serif;
}

.img .bg-color {
    background: linear-gradient(0deg, rgba(146, 200, 62, 1) 0%, rgba(12, 12, 12, 0) 80%);
    height: 450px;
    width: 100%;
    position: absolute;
    bottom: -15%;
    left: 0;
}

#carousel1 .text1-1 {
    position: absolute;
    top: 30%;
    left: 5%;
    height: 60px;
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#carousel1 .text1-2 {
    position: absolute;
    bottom: -100%;
    left: 5%;
    width: 240px;
}

.textenter1 {
    animation: textenter1 0.5s ease forwards normal;
}

.textleave1 {
    animation: textleave1 0.5s ease forwards normal;
}

.textenter2 {
    animation: textenter2 0.5s ease forwards normal;
}

.textleave2 {
    animation: textleave2 0.5s ease forwards normal;
}

.imgenter {
    animation: imgenter 0.5s ease forwards normal;
}

.imgleave {
    animation: imgleave 0.5s ease forwards normal;
}

.bg-colorenter {
    animation: bg-colorenter 0.5s ease forwards normal;
}

.bg-colorleave {
    animation: bg-colorleave 0.5s ease forwards normal;
}

@keyframes textenter1 {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-54%);
    }
}

@keyframes textleave1 {
    0% {
        transform: translateY(-54%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes textenter2 {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-200%);
    }
}

@keyframes textleave2 {
    0% {
        transform: translateY(-200%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes imgenter {
    0% {
        transform: scale(1) translateY(0%);
    }

    100% {
        transform: scale(1.1) translateY(4%);
    }
}

@keyframes imgleave {
    0% {
        transform: scale(1.1) translateY(4%);
    }

    100% {
        transform: scale(1) translateY(0%);
    }
}

@keyframes bg-colorenter {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-12%);
    }
}

@keyframes bg-colorleave {
    0% {
        transform: translateY(-12%);
    }

    100% {
        transform: translateY(0%);
    }
}

/*---------carousel1 mobile-----------*/
.carousel1-mobile {
    display: none;
}

.carousel1-mobile {
    position: relative;
    height: 70vh;
    width: 100%;
}

.slider-mb {
    width: 1300px;
    max-width: 60vw;
    height: 60vh;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.list-mb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}

.item-mb {
    display: flex;
    justify-content: center;
    width: 60vw;
}

.item-mb .bg-color {
    background: linear-gradient(0deg, rgba(146, 200, 62, 1) 0%, rgba(12, 12, 12, 0) 50%);
    height: 450px;
    width: 100%;
    position: absolute;
    bottom: -15%;
    left: 0;
}

.carousel1-mobile .img {
    position: relative;
    width: 48vw;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.684);
    border-radius: 20px;
    overflow: hidden;
}

.carousel1-mobile .text1 {
    position: absolute;
    left: 4%;
    bottom: 3%;
    z-index: 1;
    height: 150px;
    width: 100%;
    overflow: hidden;
}

.carousel1-mobile h4 {
    font-size: 24px;
    font-weight: bold;
    color: white;
    font-family: sans-serif;
}

.carousel1-mobile h5 {
    font-size: 12px;
    font-weight: lighter;
    color: white;
    font-family: sans-serif;
}

.carousel1-mobile .text1-1 {
    position: absolute;
    bottom: 0%;
    width: 150px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.carousel1-mobile .text1-2 {
    position: absolute;
    bottom: -34%;
    height: 30px;
}

.carousel1-mobile .buttons button {
    visibility: hidden;
}

.carousel1-mobile .dots {
    position: absolute;
    bottom: 10px;
    color: white;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.carousel1-mobile .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: white;
    margin: 4px;
    border-radius: 20px;
    cursor: pointer;
    transition: 1s;
}

/*--------end-----------*/
/*---------programs-----------*/

.programs {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 14vh;
    margin-bottom: -12vh;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}




/*---------carousel2-----------*/

#carousel2 {
    position: relative;
    height: 60vh;
    width: 100%;
}

.slider {
    width: 1300px;
    max-width: 60vw;
    height: 50vh;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}

.item {
    display: flex;
    justify-content: center;
    width: 60vw;
}

.item .bg-color {
    background: linear-gradient(0deg, rgba(146, 200, 62, 1) 0%, rgba(12, 12, 12, 0) 50%);
    height: 450px;
    width: 100%;
    position: absolute;
    bottom: -15%;
    left: 0;
}

#carousel2 .img {
    position: relative;
    width: 48vw;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.684);
    border-radius: 20px;
    overflow: hidden;
}

#carousel2 .text2 {
    position: absolute;
    left: 4%;
    bottom: 3%;
    z-index: 1;
    height: 90px;
    width: 100%;
    overflow: hidden;
}

#carousel2 h4 {
    font-size: 40px;
    font-weight: bold;
    color: white;
    font-family: sans-serif;
}

#carousel2 h5 {
    font-size: 14px;
    font-weight: lighter;
    color: white;
    font-family: sans-serif;
}

.text2-1 {
    position: absolute;
    bottom: 6%;
}

.text2-2 {
    position: absolute;
    bottom: -86%;
}

.text2-2-1 {
    display: none;
}

.textenter3 {
    animation: textenter3 0.5s ease forwards normal;
}

.textleave3 {
    animation: textleave3 0.5s ease forwards normal;
}

.textenter4 {
    animation: textenter4 0.5s ease forwards normal;
}

.textleave4 {
    animation: textleave4 0.5s ease forwards normal;
}

.bg-colorenter2 {
    animation: bg-colorenter2 0.5s ease forwards normal;
}

.bg-colorleave2 {
    animation: bg-colorleave2 0.5s ease forwards normal;
}

@keyframes textenter3 {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-60%);
    }
}

@keyframes textleave3 {
    0% {
        transform: translateY(-60%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes textenter4 {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-150%);
    }
}

@keyframes textleave4 {
    0% {
        transform: translateY(-150%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes bg-colorenter2 {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-10%);
    }
}

@keyframes bg-colorleave2 {
    0% {
        transform: translateY(-10%);
    }

    100% {
        transform: translateY(0%);
    }
}


#carousel2 .buttons {
    position: absolute;
    top: 40%;
    left: 13%;
    width: 74%;
    display: flex;
    justify-content: space-between;
}

#carousel2 .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: white;
    border: none;
    font-family: monospace;
    font-weight: bold;
    font-size: 20px;
}

.dots {
    position: absolute;
    bottom: 10px;
    color: white;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;

}

.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: white;
    margin: 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 1s;
}

.dots li.active {
    width: 30px;
}

.programs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------end--------*/
/*--------COMMUNITY--------*/
.community {
    position: relative;
    height: 100vh;
    padding-top: 14vh;
    margin-bottom: -12vh;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}



.community p {
    margin-bottom: 4vh;
}

.community img {
    width: 40%;
    object-fit: contain;
}

.text {
    position: relative;
    display: flex;
    height: 60vh;
    flex-direction: column;
    justify-content: space-evenly;
}

.text h4 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(255, 255, 255, 0.9);
}

.community .text h4 {
    text-align: left;
    display: inline-block;

}

.text h4 span {
    color: #92c83e;
}

.text img {
    display: inline-block;
    margin-right: 10px;
}

.community .text img {
    width: 6%;
}

.textcom {
    display: flex;
    align-items: flex-start;
}



/*--------end--------*/
/*---------AI TECH----------*/
.aitech {
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 14vh;
    margin-bottom: -12vh;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}

.aitech p {
    margin: auto;
}

.aitech .text h4 {
    text-align: left;
}

.aitech .content1 .text img {
    width: 10%;
    margin-right: 20px;
}


.aitech .content1 img {
    width: 60%;
    object-fit: contain;
}

.textai {
    display: flex;
    align-items: flex-start;
}

.content2 {
    display: none;
}

.text3 {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 22vh;
}

.aitech .content2 .text3 img {
    width: 30%;
    object-fit: contain;
}

.text3 h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgb(255, 255, 255, 0.9);
    text-align: center;
}

.text3 h4 span {
    color: #92c83e;
}

.aitech .content2 img {
    width: 100%;
    object-fit: contain;
}

.aitech .pic {
    height: 60vh;
}

/*--------end----------*/
/*--------REVIEWS--------*/
.reviews {
    position: relative;
    height: 66vh;
    padding-top: 14vh;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}

.reviews h2 {
    margin-bottom: 0vh;
}

#carousel3 {
    min-height: 30vh;
    display: grid;
    place-items: center;
}

.slider3 {
    height: 230px;
    margin: auto;
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track3 {
    display: flex;
    width: calc(350px * 10);
    animation: scroll 40s linear infinite;
}

.slide-track3:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-350px * 5));
    }

}

.slide3 {
    height: 250px;
    width: 350px;
    display: flex;
    align-items: center;
    padding: 15px;
    perspective: 100px;
}

#carousel3 img {
    width: 100%;
    transition: transform 0.5s;
}

#carousel3 img:hover {
    transform: translateZ(10px);
}

/*------gardient shadow----*/

.slider3::before,
.slider3::after {
    background: linear-gradient(to right, rgba(12, 12, 12, 1) 0%, rgba(12, 12, 12, 0) 100%);
    content: '';
    height: 100%;
    position: absolute;
    width: 10%;
    z-index: 2;
}

.slider3::before {
    left: 0;
    top: 0;
}

.slider3::after {
    right: -1vw;
    top: 0;
    transform: rotateZ(180deg);
}

/*--------end----------*/
/*-------DOWNLOAD---------*/
.download {
    padding-top: 14vh;
    width: 80%;
    margin: auto;
    animation: appear linear;
    animation-timeline: view();
    animation-range: entry 0;
}

.download .text {
    display: flex;
    justify-content: center;
}

.download h2 {
    color: white;
    font-size: 48px;
    font-family: Metropolis;
    text-transform: uppercase;
    text-align: right;
}

.download h2 span {
    color: #92c83e;
    font-family: Metropolis;
}

.download p {
    color: rgb(255, 255, 255, 0.6);
    text-align: right;
    font-size: 14px;
}

.platform {
    display: flex;
    justify-content: flex-end;
    margin-top: 5vh;
}

.download .text img {
    position: relative;
    width: 100%;
    margin-left: 0%;
}

.download .text .platform a {
    
    margin-left: 2%;
}

.download .pic img {
    width: 50%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0px 0px 12px 0px #ffff;
}



/*--------end----------*/

/*-------FOOTER---------*/
.foot {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}



.footlogo {
    height: 100%;
    width: 16%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: -1vh;
}

.footlogo h1 {
    font-size: 40px;
    text-transform: uppercase;
    color: white;
    font-family: Metropolis;
    padding: 0;
    margin: 0;
}

.footlogo img {
    width: 100%;
    object-fit: cover;
}

.footicon {
    width: 82%;
    display: flex;
    flex-direction: column;
}

.blank {
    height: 40%;
    background-color: rgb(12, 12, 12);
}

.texticon {
    height: 50%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1vh;
}

.texticon p {
    font-size: 15px;
    font-weight: 300;
    color: white;
    width: 80%;
    margin-bottom: 0;
}

.texticon img {
    width: 3%;
    object-fit: contain;
}

hr {
    color: white;
    width: 80%;
    display: block;
    margin: 10% 10% 1% 10%;
}

/*--------end----------*/

/*--------IPAD interface----------*/
@media (max-width:1100px) {

    /*---------menubar---------*/
    .menu1 li {
        font-size: 15px;
    }

    .menu1-1 {
        top: 60%;
    }

    .menu1-1 li {
        font-size: 13px;
    }


    .web h1 {
        font-size: 20px;
    }

    .name {
        height: 60%;
    }

    .body h1 {
        font-size: 40px;
    }

    .body p {
        font-size: 12px;
    }

    .btn1 {
        padding-left: 2%;
    }

    .btn1 button {

        font-size: 14px;
    }

    /*---------end----------*/
    /*--------aboutus---------*/
    section h1 {
        font-size: 80px;
    }

    .aboutus {
        height: fit-content;
    }

    .aboutus h2 {
        font-size: 44px;
    }

    .aboutus p {
        font-size: 12px;
    }

    .aboutus img {
        width: 220px;
        border-radius: 34px;
    }

    /*---------end----------*/
    /*--------parameter-------*/
    .para h2 {
        font-size: 38px;
    }


    /*---------end----------*/
    /*--------EXPLORE---------*/
    /*---------workout----------*/
    .explore h1 {
        margin-bottom: -2vh;
    }

    .explore h2 {
        font-size: 50px;
        margin-bottom: 0vh;
    }

    .explore h3 {
        font-size: 30px;
    }

    .explore p {
        font-size: 12px;
    }



    #carousel1 .text1-1 {
        top: 26%;
    }

    #carousel1 .text1-2 {
        bottom: -143%;
        width: 150px;
    }

    /*---------end----------*/
    /*---------programs----------*/





    #carousel2 .buttons {
        left: 10%;
        width: 80%;
    }



    /*---------end----------*/
    /*---------community----------*/


    .community img {
        width: 48%;
    }

    .text h4 {
        font-size: 24px;
    }

    .community .text img {
        right: 5%;
    }

    #icon1-1 {
        top: 17%;
    }

    #icon1-2 {
        top: 41%;
    }

    #icon1-3 {
        top: 71%;
    }

    /*---------end----------*/
    /*---------aitech----------*/





    .aitech img {
        width: 90%;
    }


    /*---------end----------*/
    /*---------reviews----------*/

    .reviews h2 {
        font-size: 70px;
    }

    .reviews h3 {
        font-size: 30px;

    }

    #carousel3 {
        min-height: 24vh;
        display: grid;
        place-items: center;
    }

    .slider3 {
        height: 100%;
        margin: auto;
        position: relative;
        width: 100%;
        display: grid;
        place-items: center;
        overflow: hidden;
    }

    .slide-track3 {
        display: flex;
        width: calc(280px * 10);
        animation: scroll 40s linear infinite;
    }

    .slide-track3:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-280px * 5));
        }

    }

    .slide3 {
        height: 180px;
        width: 280px;
        display: flex;
        align-items: center;
        padding: 10px;
        perspective: 100px;
    }

    #carousel3 img:hover {
        transform: translateZ(10px);

    }

    /*---------end----------*/
    /*---------download----------*/

    .download h2 {
        font-size: 54px;
    }

    .download p {
        font-size: 12px;
    }



    .platform {
        margin-top: 2vh;
    }

    .download .text img {
        position: relative;
        width: 100%;
        border-radius: 4px;
    }

    .download .pic img {
        width: 60%;
        border-radius: 40px;
    }

    /*---------end----------*/
    /*---------footer----------*/

    .footlogo h1 {
        font-size: 28px;
    }

    /*---------end----------*/
}



@media (max-width:600px) {
    .row {
        --bs-gutter-x: none;
    }

    /*---------menubar---------*/
    .link {
        display: none;
    }

    .body h1 {
        text-align: center;
        font-size: 50px;
    }

    .body p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 10%;
    }

    .mobile {
        display: block;
    }

    .translate {
        right: 1vw;
        top: 1vh;
    }

    #navpage {
        right: 1vw;
        top: 6vh;
    }

    header {
        height: 100vh;
        background-size: cover;
        padding-top: 60%;
        background-position: 40%;
    }

    .btn1 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 70%;
        height: 13vh;
        margin: auto;
    }

    .navbarbg {
        display: none;
    }

    /*---------end----------*/
    /*--------aboutus---------*/
    section h1 {
        font-size: 36px;
    }

    .pic {
        height: fit-content;
    }

    .aboutus {
        padding-top: 10vh;
        height: fit-content;
    }

    .aboutus .text {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .aboutus h1 {
        text-align: center;
    }

    .aboutus h2 {
        font-size: 30px;
        text-align: center;
        color: white;
    }

    .aboutus p {
        font-size: 16px;
        text-align: center;
        width: 94%;
        margin-left: 3%;
    }

    .aboutus img {
        width: 230px;
        border-radius: 34px;
        position: static;
    }

    .navtextt {
        width: 28vw;
    }

    /*---------end----------*/
    /*--------parameter-------*/
    .para {
        padding-top: 10vh;
    }

    .para h2 {
        font-size: 28px;
    }

    .para h3 {
        font-size: 16px;
    }



    /*---------end----------*/
    /*--------explore-------*/
    /*--------workouts-------*/
    .explore {
        padding-top: 10vh;
    }

    .explore h1 {
        margin-bottom: 0vh;
    }

    .explore h2 {
        font-size: 28px;
        -webkit-text-stroke-width: 2px;

    }

    .explore h3 {
        font-size: 18px;
    }

    .explore p {
        font-size: 13px;

    }

    .bgpic1 {
        top: 210%;
    }

    .workouts p {
        height: 18vh;
    }

    #carousel1 {
        display: none;
    }

    .carousel1-mobile {
        display: block;
    }

    .workouts img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*---------end----------*/
    /*--------programs-------*/
    .programs {
        padding-top: 10vh;
    }

    #carousel2 .buttons {
        left: 5%;
        width: 90%;
    }

    #carousel2 .buttons button {
        width: 40px;
        height: 40px;
    }

    #carousel2 h4 {
        font-size: 30px;
    }

    #carousel2 h5 {
        font-size: 13px;
    }

    #carousel2 .text2 {
        height: 108px;
    }

    .text2-1 {

        position: absolute;
        bottom: 0%;
    }

    .text2-2 {
        display: none;
    }

    .text2-2-1 {
        display: block;
    }

    /*---------end----------*/
    /*--------community-------*/
    .community {
        height: 120vh;
        padding-top: 10vh;
    }

    .community img {
        width: 180px;
    }

    .community .text img {
        width: 6%;
        left: 3%;
    }

    .text {
        justify-content: space-between;
        height: 26vh;
    }

    .text h4 {
        font-size: 20px;
    }

    #icon1-1 {
        top: 0%;
    }

    #icon1-2 {
        top: 36%;
    }

    #icon1-3 {
        top: 80%;
    }

    /*---------end----------*/
    /*--------aitech-------*/
    .aitech {
        padding-top: 10vh;
        height: 112vh;
    }

    .content1 {
        display: none;
    }

    .content2 {
        display: flex;
    }

    /*---------end----------*/
    /*-------reviews--------*/
    .reviews {
        height: 40vh;
        padding-top: 10vh;
    }

    #carousel3 {
        min-height: 20vh;
        display: grid;
        place-items: center;
    }

    .slider3 {
        height: 100%;
        margin: auto;
        position: relative;
        width: 100%;
        display: grid;
        place-items: center;
        overflow: hidden;
    }

    .slide-track3 {
        display: flex;
        width: calc(300px * 10);
        animation: scroll 40s linear infinite;
    }

    .slide-track3:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-200px * 5));
        }

    }

    .slide3 {
        height: 200px;
        width: 300px;
        display: flex;
        align-items: center;
        padding: 10px;
        perspective: 100px;
    }

    #carousel3 img:hover {
        transform: translateZ(0px);
    }

    /*---------end----------*/
    /*-------download--------*/
    .download {
        padding-top: 10vh;
        width: 120%;
        margin: auto;
    }

    .download .text {
        display: flex;
        justify-content: center;
        height: 60vh;
    }

    .download h2 {

        font-size: 40px;

    }

    .download p {
        font-size: 13px;
    }

    .download .pic img {
        width: 200px;
        position: absolute;
        top: 0vh;
        left: 5vh;
        border-radius: 27px;
    }

    /*---------end----------*/
    /*--------footer---------*/
    .foot {
        width: 90%;
    }

    hr {
        width: 90%;
        margin: 2% 5% 1% 5%;
    }

    .footlogo {
        display: none;
    }

    .footicon {
        width: 100%;
    }

    .texticon {
        width: 100%;
    }

    .texticon p {
        font-size: 12px;
        width: 80%;
    }
}
    /*---------end----------*/

