:root {
    --green: #4CB332FF;
}

/* body {
    height: 1000px; 
    overflow-x: hidden;
} */

/* Mohamed Navbar */
/* Start Navbar  */
.navbar {
    background-color: var(--green);
    font-size: 20px;
    width: 100%;
}

.navbar-brand {
    transition: 0.3s;
    transition-timing-function: linear;
}

.navbar-brand:hover {
    letter-spacing: 1px;
    transform: scale(1.02);
}

.navbar-nav .nav-link {
    transition: 0.5s;
}

.navbar-nav .nav-link:hover {
    transform: translateY(4px);
    color: white;
}

/* End Navbar  */

/* Start main text */
.maintext {
    background-color: rgb(227, 244, 224);
    height: 70vh;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    border-radius: 0 0 20px 20px;
    box-shadow: 3px 3px 2px #171a1f12;
}

.maintext h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 10px;
}

.maintext p {
    font-size: 20px;
    font-weight: 400;
}

.main-btn {
    background-color: var(--green) !important;
    color: white !important;
    padding: 10px 25px !important;
    transition: 0.3s !important;
    margin: 20px;
}

.main-btn:hover {
    background-color: #3D8F28FF !important;
    color: white !important;
    transform: scale(1.02);
}

.full-btn {
    margin: auto;
    width: 100% !important;
    border-radius: 10px !important;
}

/* End main text */

.sub-heading {
    padding: 50px;
}

.sub-heading-text {
    font-size: 36px;
    font-weight: 700;
}

/* Start Card Styling */
.workouts-title {
    font-size: 30px;
    font-weight: 600;
}

.card {
    gap: 20px;
    margin-bottom: 20px;
}

.card-body {
    position: relative;
}

.card-img-fixed {
    width: 100%;
    height: 200px;
    background-size: cover;
}

@media (max-width: 767px) {
    .card-img-fixed {
        height: 300px;
    }
}

.workout-icons {
    position: absolute;
    color: var(--green);
    top: 45px;
    left: 7px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin: 30px !important;
}

.card-text {
    font-size: 14px;
    font-weight: 400;
    color: #565D6DFF;
}

/* End Card Styling */

/* Start Fitness */
.fitness {
    background-color: rgb(239, 239, 239);
    /* width: 98%; */
}

.card-fitness {
    background: linear-gradient(131.39deg, #cdd2cc33 0%, #E0FFFE33 100%) !important;
    padding: 20px;
}

.card-title-fitness {
    width: 180px;
    margin: 30px;
    text-wrap: wrap;
    font-size: 24px;
    font-weight: 600;
}

.progress {
    margin: 20px;
    position: relative;
    overflow: visible !important;
}

.progress-bar {
    background-color: var(--green) !important;
    border-radius: 5px;
}

.progress::after {
    content: attr(aria-valuenow) '%';
    font-size: 16px;
    position: absolute;
    left: 102%;
    top: -40%;
}

.fitness-icons {
    color: var(--green);
    position: absolute;
    top: 55px;
    left: 0px;
}

/* End Fitness */

/* Start Footer  */
footer {
    color: white;
    padding: 15px 20px;
    text-align: center;
    background: linear-gradient(128.64deg, #4CB332FF 0%, rgb(27, 183, 105) 100%);

}


footer .footer-col {
    margin: 10px 0;
}

footer h4 {
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #222;
}

.footer-bottom {
    margin-top: 10px;
    padding-top: 5px;
}

/* End Footer */