* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background-color: transparent;
}
.background-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/high-resolution-removebg.png") no-repeat center center;
    background-size: 100%;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0.5;
}
html::-webkit-scrollbar {
    display: none;
}
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}
.container {
    max-width: 100%;
    width: 90%;
    margin: auto;
}
.navbar {
    position: fixed;
    width: 100%;
    background: black;
    color: #fff;
    opacity: 2;
    z-index: 100;
    height: 80px;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    align-items: center;
}
.menu-items {
    order: 2;
    display: flex;
}
#logo {
    width: 80px;
    height: 80px;
}
.homelog {
    display: none;
    position: absolute;
    top: 100px;
}

@media (min-width: 1380px) {
    .homelogo {
        display: none;
    }
    .homelog {
        display: block;
    }
}
#logo img {
    width: 100%;
    height: 100%;
}
.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.3rem;
}
.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
    transition: 0.2ms;
}
.navbar a:hover {
    color: goldenrod;
}
@media (max-width: 900px) {
    .navbar {
        opacity: 2;
    }
    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }
    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }
    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }
    .navbar-container .hamburger-lines {
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333;
    }
    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0 0%;
        transition: transform 0.3s ease-in-out;
    }
    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }
    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0 100%;
        transition: transform 0.3s ease-in-out;
    }
    .navbar .menu-items {
        padding-top: 100px;
        background: rgb(14, 14, 14);
        height: 100vh;
        max-width: 270px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 40px;
        transition: transform 0.5s ease-in-out;
        overflow: scroll;
    }
    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }
    .navbar a {
        color: white;
    }
    #logo {
        position: absolute;
        top: 0;
        right: 15px;
    }
    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }
    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }
    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }
    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }
}
@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked ~ .logo {
        display: none;
    }
}
.home-container {
    width: 100%;
    height: 100vh;
    margin-bottom: -5px;
    position: relative;
    top: 118px;
}
video {
    object-fit: cover;
    width: 100%;
    margin-top: -4px;
}
.about-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: black;
    padding: 20px 0 40px 0;
}
.cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.card {
    margin: 40px;
    position: relative;
    max-width: 250px;
    max-height: 350px;
    box-shadow: 0 40px 60px -6px black;
}
.card-title {
    display: block;
    text-align: center;
    color: #fff;
    background-color: #6184a8;
    padding: 2%;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.card img {
    width: 100%;
    height: 98%;
    object-fit: cover;
    display: block;
    position: relative;
}
.card-desc {
    display: block;
    font-size: 1.2rem;
    position: absolute;
    height: 0;
    top: 0;
    opacity: 0;
    padding: 18px 8%;
    background-color: white;
    overflow-y: scroll;
    transition: 0.8s ease;
}
.card:hover .card-desc {
    opacity: 1;
    height: 100%;
}
.about-container h1 {
    font-size: 2.8rem;
    color: #fff;
    margin: 20px 0 20px 0;
    text-align: center;
}
.Service-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 40px;
    background-color: black;
    overflow: scroll;
}
.Service-container::-webkit-scrollbar {
    display: none;
}
.Service-heading {
    font-size: 30px;
}
.wow {
    width: 70%;
    max-height: 600px;
    display: flex;
    flex-direction: row;
    border: 1px solid rgb(154, 153, 153);
}
.service-image-container {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-image-container img {
    width: 450px;
    height: 100%;
}
.service-heading-description {
    color: #daa520;
}
.service-description {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
}
.service-heading-description {
    font-size: 2em;
    margin: 15px 0;
}
.service-describes {
    color: white;
}
@media (max-width: 600px) {
    .wow {
        flex-direction: column;
        background: rgb(9, 9, 9);
    }
    .service-image-container {
        width: 100%;
        border-radius: 10%;
        display: none !important;
    }
    .service-heading-description {
        margin: 10px 0;
        color: #daa520;
    }
    .service-description {
        justify-content: start;
        padding: 0 10px;
    }
}
@media (min-width: 600px) and (max-width: 900px) {
    .wow {
        flex-direction: column;
    }
    .service-image-container {
        text-align: center;
    }
}
.review-container-main {
    padding: 30px 0;
    text-align: center;
    background-color: black;
}
.review-container {
    font-family: Arial, sans-serif;
    background-color: transparent !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    margin: 0;
}
.review-title {
    color: #daa520;
}
.clinet-image-container {
    height: 150px;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.image-container {
    width: 150px;
    height: 100%;
    border-radius: 50%;
}
.image-container img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
.carousel {
    position: relative;
    width: 80%;
    max-width: 800px;
    overflow: hidden;
    background: transparent;
    border-radius: 10px;
    margin: 20px 0;
}
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}
.testimonial {
    margin: 20px;
}
.testimonial p {
    font-size: 1.2em;
    color: white;
}
.testimonial h4 {
    margin-top: 10px;
    font-size: 1.5em;
    color: #daa520;
}
.testimonial span {
    display: block;
    margin-top: 5px;
    color: #777;
}
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2em;
    color: #333;
    cursor: pointer;
}
.carousel-control:hover {
    color: #fff;
}
.carousel-control.prev {
    left: 10px;
}
.carousel-control.next {
    right: 10px;
}
@media (max-width: 600px) {
    .carousel-item {
        padding: 10px;
    }
    .testimonial p {
        font-size: 1em;
    }
    .testimonial h4 {
        font-size: 1.2em;
    }
}
footer {
    background-color: black;
}
.footer {
    padding: 30px 0;
    font-family: "Play", sans-serif;
    text-align: center;
}
.footer .row {
    width: 100%;
    margin: 1% 0%;
    padding: 0.6% 0%;
    color: gray;
    font-size: 0.8em;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.footer .row img {
    height: 200px;
    width: 200px;
}
.footer .row a {
    text-decoration: none;
    color: gray;
    transition: 0.5s;
}
.footer .row a:hover {
    color: #fff;
}
.footer .row ul {
    width: 100%;
}
.footer .row ul li {
    display: inline-block;
    margin: 0 30px;
}
.footer .row a i {
    font-size: 2em;
    margin: 0 1%;
}
.footer .row a i:hover {
    color: white;
}
@media (max-width: 768px) {
    .footer {
        text-align: left;
        padding: 5%;
        height: 100vh;
    }
    .footer .row ul li {
        display: block;
        margin: 10px 0;
        text-align: left;
    }
    .footer .row a i {
        margin: 0 3%;
    }
}
.maine-contacts-container {
    min-height: 100vh;
    width: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.container-contact {
    width: 85%;
    background: rgb(29, 29, 29);
    border-radius: 6px;
    padding: 20px 60px 30px 40px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.container-contact .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.container-contact .content .left-side {
    width: 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    position: relative;
}
.content .left-side::before {
    content: "";
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}
.content .left-side .details {
    margin: 14px;
    text-align: center;
}
.content .left-side .details i {
    font-size: 30px;
    color: #daa520;
    margin-bottom: 10px;
}
.content .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
    color: white;
}
.content .left-side .details .text-one,
.content .left-side .details .text-two {
    font-size: 14px;
    color: #afafb6;
}
.container-contact .content .right-side {
    width: 75%;
    margin-left: 75px;
}
.content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: #daa520;
}
.content .right-side p {
    color: white;
}
.right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}
.right-side .input-box input,
.right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    background: #f0f1f8;
    border-radius: 6px;
    padding: 0 15px;
    resize: none;
}
.right-side .message-box {
    min-height: 110px;
}
.right-side .input-box textarea {
    padding-top: 6px;
}
.right-side .button {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}
.right-side .button input[type="submit"] {
    color: #fff;
    font-size: 18px;
    outline: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    background: #daa520;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button input[type="button"]:hover {
    background: #daa520;
}
@media (max-width: 950px) {
    .container-contact {
        width: 90%;
        padding: 30px 40px 40px 35px;
    }
    .container-contact .content .right-side {
        width: 75%;
        margin-left: 55px;
    }
}
@media (max-width: 820px) {
    .container-contact {
        margin: 40px 0;
        height: 100%;
    }
    .container-contact .content {
        flex-direction: column-reverse;
    }
    .container-contact .content .left-side {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .container-contact .content .left-side::before {
        display: none;
    }
    .container-contact .content .right-side {
        width: 100%;
        margin-left: 0;
    }
}
.about-section {
    width: 100%;
    padding: 10px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}
.about-main-container {
    width: 70%;
    display: flex;
    gap: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0 18px 36px -18px inset;
}
.about-title {
    margin: 20px 0;
}
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-image img {
    height: 400px;
    width: 400px;
}
.about-content-container {
    text-align: center;
    padding: 10px;
}
@media (max-width: 1180px) {
    .about-main-container {
        flex-direction: column;
        width: 100%;
    }
    .about-image img {
        width: 100%;
    }
    .about-section {
        padding: 0;
    }
}
@media (max-width: 600px) {
    .about-main-container {
        flex-direction: column;
        width: 100%;
        box-shadow: none;
        padding-bottom: 10px;
    }
    .about-image img {
        width: 100%;
    }
    .about-section {
        padding: 0;
    }
}
.gallery-header {
    background-image: url(images/image.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
}
.gallery-title {
    position: absolute;
    color: white;
    font-size: 60px;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
}
.gallery-img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.gallery-img:hover {
    transform: scale(1.05);
}
.image-viewer {
    display: none;
    position: fixed;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s;
}
.viewed-image {
    width: 80%;
    max-width: 700px;
    animation: zoomIn 0.6s;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes zoomIn {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}
.popup {
    height: 100vh;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
.popup-content {
    width: 70%;
    background: #ffcc03;
    border-radius: 5px;
}
.popup-image-container {
    width: 110%;
    height: 100%;
}
.popup-image-container img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}
.popup-inner-container {
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.popup-content-container {
    width: 90%;
    display: flex;
    flex-direction: column;
}
.cross-icon-container {
    text-align: end;
    margin: 15px 0;
}
.close {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 40px;
    font-weight: bold;
}
.popup-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}
.popup-buttons-container {
    text-align: center;
}
.popup-buttons-container h2 {
    font-size: 25px;
    text-transform: capitalize;
}
.popup-gym-logo {
    width: 100%;
    height: 300px;
    display: none;
    justify-content: center;
}
.popup-gym-logo img {
    width: 200px;
    height: 100%;
}
.popup-buttons p {
    text-transform: capitalize;
}
.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #090909;
    padding: 0.7em 1.7em;
    cursor: pointer;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    font-weight: bold;
    width: 200px;
    margin: 15px 0;
}
.button2:active {
    color: #666;
}
.button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
.button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: black;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}
.button2:hover {
    color: #ffffff;
    border: 1px solid black;
}
.button2:hover:before {
    top: -35%;
    background-color: black;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.button2:hover:after {
    top: -45%;
    background-color: black;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
.buttons-inner-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 600px) {
    .popup-content {
        width: 72%;
        background: #c1a01e;
    }
    .popup-image-container {
        display: none;
    }
    .popup-gym-logo {
        display: flex;
        height: 200px;
    }
    .popup-buttons-container h2 {
        font-size: 17px;
    }
}
@media (min-width: 600px) and (max-width: 996px) {
    .popup-content {
        width: 80%;
    }
    .buttons-inner-container {
        display: flex;
        flex-direction: column;
    }
    .popup-image-container {
        display: none;
    }
    .popup-image-container img {
        width: 103%;
    }
    .popup-gym-logo {
        display: flex;
    }
    .cross-icon-container {
        margin: 6px 0;
    }
    .popup-buttons-container {
        width: 100%;
    }
    .popup-buttons-container h2 {
        font-size: 1.1em;
    }
    .popup-buttons {
        flex-direction: row;
        gap: 3px;
    }
    .popup-gym-logo {
        display: flex;
    }
}
.training-homepage {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fffcfc;
    position: relative;
    top: 80px;
}
.training-homepage-content {
    height: 80%;
    width: 80%;
    display: flex;
    color: white;
    margin: 3.5% 0;
}
.training-homepage-left {
    width: 100%;
}
.training-homepage-left img {
    width: 100%;
    height: 100%;
}
#training-homepage-left-image2 {
    display: none;
}
.training-homepage-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}
#training-homepage-right-h1 {
    color: black;
    line-height: 33px;
    margin: 15px 0;
}
.training-homepage-right-p {
    font-size: 1.1em;
    margin: 9px 0;
    line-height: 24px;
    color: rgb(136, 129, 129);
}
.personal-training-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin-top: 80px;
}
.personal-training-section-content {
    width: 80%;
    background-color: #fffcfc;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    padding: 10px 5px;
    position: relative;
    z-index: 2;
}
.training-heading {
    text-align: center;
    font-size: 35px;
    color: goldenrod;
    margin: 15px 0;
}
.training-program-div {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
    padding: 16px;
}
.training-program-title {
    font-size: 30px;
    color: rgb(118, 114, 114);
    margin: 10px 0;
}
.training-program-buttons {
    display: flex;
    gap: 10px;
}
.primary-btn {
    width: 180px;
    position: relative;
    height: 35px;
    border: 3px ridge goldenrod;
    outline: none;
    background-color: transparent;
    color: goldenrod;
    transition: 1s;
    border-radius: 0.3em;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2ms;
}
.primary-btn::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: transparent;
    transition: 0.5s;
    transform-origin: center;
}
.primary-btn::before {
    content: "";
    transform-origin: center;
    position: absolute;
    top: 80%;
    left: 3%;
    width: 95%;
    height: 40%;
    background-color: transparent;
    transition: 0.5s;
}
.primary-btn:hover::before,
button:hover::after {
    transform: scale(0);
}
.primary-btn:hover {
    box-shadow: inset 0 0 25px black;
}
.table-container {
    margin: 50px auto;
    width: 70%;
    text-align: center;
    display: flex;
    justify-content: center;
}
.table-containerr {
    width: 60%;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th,
td {
    border: 1px solid #ddd;
    padding: 8px;
    background: #fff;
}
th {
    background-color: #f4f4f4;
    font-weight: bold;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #f1f1f1;
}
.table-title {
    background-color: #fff;
    color: black;
    font-size: 28px;
    font-weight: bold;
    padding: 5px;
}
.online-traning {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px;
}
#online {
    height: 35px;
    width: 150px;
    font-size: 22px;
    color: rgb(0, 0, 0);
    background-color: white;
    outline: 3px #181717 solid;
    outline-offset: -3px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: 400ms;
}
#inline:hover {
    background-color: transparent;
}
#online:hover {
    color: white;
    background-color: transparent;
    border: 1px solid #fff;
    outline: white !important;
}
.online-h {
    font-size: 2em;
    color: goldenrod;
}
.transformation-section {
    z-index: 1;
    background-color: #fffcfc;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
}
.transformation-heading {
    color: goldenrod;
    padding: 20px 0;
    text-align: center;
}
.transformation-main-container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background-color: #fffcfc;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    padding: 10px;
    position: relative;
    z-index: 2;
}
.transformation-wrapper {
    width: 300px;
    height: 400px;
    max-width: 400px;
    border: 2px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fffcfc;
    box-shadow: rgba(0, 0, 0, 0.29) 0 3px 8px;
}
.transforation-image-container {
    width: 100%;
    height: 300px;
}
.transforation-image-container img {
    width: 100%;
    height: 100%;
}
.transformation-button-container {
    text-align: center;
}
.transforation-btn {
    width: 70%;
    height: 50px;
    font-size: 15px;
    font-weight: 900;
    color: black;
    cursor: pointer;
    outline: 0;
    border: 0;
    border-radius: 5px;
    margin-bottom: 15px;
    transition: 0.2s;
}
.transforation-btn:hover {
    background-color: goldenrod;
    color: white;
}
#openPopupBtn:hover {
    background-color: goldenrod;
}
.popup2,
.popup3 {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.popup-content2,
.popup-content3 {
    text-align: center;
    position: relative;
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.close2,
.close3 {
    position: absolute;
    top: 10px;
    right: 25px;
    color: black;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close2:hover,
.close2:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.close3:hover,
.close3:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.gotoforms {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0;
}
@media (min-width: 1200px) {
    .personal-training-section {
        height: 80vh;
    }
    .personal-training-section-content {
        margin-bottom: 29px;
    }
}
@media (max-width: 660px) {
    .personal-training-section-content {
        width: 80%;
        padding: 16px;
    }
    .training-heading {
        font-size: 25px;
    }
    .training-program-div {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .training-program-buttons {
        flex-direction: column;
    }
    .training-program-title {
        font-size: 25px;
    }
    .table-containerr {
        width: 80%;
    }
    .table-container {
        width: 95%;
    }
    .online-traning {
        flex-direction: column;
        justify-content: center;
        margin: 0;
        gap: 20px;
    }
    .online-h {
        font-size: 1.4em;
    }
    #online {
        font-size: 22px;
        height: 27px;
        width: 120px;
    }
    .training-homepage-right-h1 {
        font-size: 22px;
    }
}
@media (max-width: 768px) {
    .training-homepage-content {
        flex-wrap: wrap;
        width: 100%;
    }
    .training-homepage {
        text-align: center;
    }
    .training-homepage-right {
        padding: 0 16px;
    }
    .training-program-title {
        font-size: 27px;
    }
    #training-homepage-left-image2 {
        display: block;
    }
    #training-homepage-left-image1 {
        display: none;
    }
}
@media (min-width: 600px) and (max-width: 1200px) {
    .training-program-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .table-containerr {
        width: 85%;
    }
    .personal-training-section-content {
        width: 90%;
    }
    .transformation-main-container {
        width: 90%;
    }
}
@media (max-width: 420px) {
    .detail-section {
        display: none;
    }
    #diet-description {
        text-align: center;
    }
    .diet-specialist {
        text-align: center;
    }
    .diet-specialist-content {
        text-align: center;
    }
    #hell {
        text-align: center;
    }
    .diet-title {
        margin-left: 10px;
    }
}
.food-container {
    width: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
    top: 80px;
}
.diet-main-container {
    display: flex;
    justify-content: space-around;
}
.diet-main-container-left {
    text-align: end;
    width: 100%;
}
.diet-main-container-left img {
    width: 80%;
    height: 100%;
}
.diet-main-container-right {
    width: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}
#diet-main-container-right-h2 {
    color: rgb(59, 57, 57);
}
#diet-main-container-right-ul {
    margin: 8px 0;
    color: rgb(216, 209, 209);
}
#diet-main-container-right-h1 {
    margin: 8px 0;
    color: goldenrod;
}
#diet-main-container-right-p,
#diet-main-container-right-ul li {
    margin: 9px 0;
    color: rgb(118 111 111);
}
.diet-image {
    width: 100%;
    height: 50vh;
}
.diet-image img {
    width: 100%;
}
.diet-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    padding: 10px;
    background: transparent;
}
.diet-title {
    margin-bottom: 10px;
}
.diet-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.diet-image img {
    height: 400px;
    box-shadow: 5px 5px 8px rgb(14, 14, 14);
}
.diet-title {
    font-size: 2em;
    font-style: italic;
    text-align: center;
    color: rgb(0, 0, 0);
}
#diet-description {
    font-size: 18px;
    color: rgb(118, 110, 110);
    margin: 10px 0;
    line-height: 30px;
}
.diet-specialist {
    font-size: 22px;
    color: goldenrod;
    line-height: 30px;
}
.diet-specialist-content {
    color: rgb(118, 110, 110);
    margin: 10px 0;
}
.diet-specialist-inner-content {
    display: flex;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.dietitian-plan-image {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.list-inline-specialist li {
    list-style-type: square;
    color: rgb(118, 110, 110);
    padding: 10px;
    font-size: 18px;
}
.dietitian-plan-image img {
    width: 50%;
}
.chat-with-dietitian {
    width: 100%;
    text-align: center;
    padding: 10px;
}
#chat {
    height: 35px;
    width: 150px;
    font-size: 22px;
    font-weight: 300;
    border: 1.5px solid rgb(118, 110, 110);
    background-color: transparent;
    cursor: pointer;
    transition: all 0.2s;
}
#chat:hover {
    transform: translateY(-5px);
    background-color: gold;
    color: black;
    font-weight: 600;
}
@media (max-width: 600px) {
    .diet-image img {
        width: 100%;
        height: 250px;
    }
    .dietitian-plan-image img {
        display: none;
    }
    .list-inline-specialist li {
        margin-left: 15px;
    }
}
@media (max-width: 768px) {
    .diet-main-container {
        flex-wrap: wrap;
    }
    .diet-container {
        flex-direction: column;
    }
    .dietitian-plan-image img {
        display: none;
    }
    .diet-content {
    }
}
.multi-screen-form .form-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}
.multi-screen-form .form-step {
    display: none;
}
.multi-screen-form .form-step.active {
    display: block;
}
.multi-screen-form label {
    display: block;
    margin-top: 10px;
}
.multi-screen-form input,
select,
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.multi-screen-form button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}
.multi-screen-form button:hover {
    background-color: #0056b3;
}
.multi-screen-form .prev-btn {
    background-color: #6c757d;
}
.multi-screen-form .prev-btn:hover {
    background-color: #5a6268;
}
@media (min-width: 600px) and(max-width:1200px) {
    .form-container {
        margin-top: 115px;
    }
}
.multi-screen-form {
    width: 100%;
    margin-top: 130px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
}
.headline-container {
    width: 100%;
    overflow: hidden;
    background-color: #1f1f1f;
    color: #fff;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    position: fixed;
    top: 76px;
   
}
.headline {
    display: inline-block;
    padding: 10px 0;
    white-space: nowrap;
    animation: scroll-left 12s linear infinite;
    text-decoration: none;
    color: #fff;
}
@keyframes scroll-left {
    0% {
        transform: translateX(250%);
    }
    100% {
        transform: translateX(-250%);
    }
}
.headline:hover {
    text-decoration: underline;
}
