/* css reset */
* {
    margin: 0px;
    padding: 0px;
}

/* CSS Variables*/
:root {
    --navbar-height: 60px;
}
html{
    scroll-behavior:smooth;
}
/* Navigation Bar */
#navbar {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0px;
    width: 100%;
    background-color: white;
    opacity: 0.8;
}
#navbar::before {
    content: "";
    background-color: rgb(243, 234, 234);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.99;
}
/* Navigation Bar:logo and image */
.logo {
    margin: 10px 34px;
}

.logo img {
    width: 90px;
    filter: invert(100%);
    font-weight: bolder;
    margin: 3px -16px;
    height: 70px;
}

/* Navigation List Style */
#navbar ul {
    display: flex;
}

#navbar ul li {
    color: black;
    text-decoration: solid;
    align-items: center;
    list-style: none;
    font-size: 1.3rem;
}

#navbar ul li a {
    color: black;
    display: block;
    padding: 3px 61px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bolder;
    font-size: 1.5rem;
}

#navbar ul li a:hover {
    color: rgb(3, 2, 2);
    background-color:#dde308;
}

#navbar ul li a.active {
    text-decoration: underline;
    color: #ff0000;
}

/* Editing of home section */
#home {
    display: flex;
    flex-direction: column;
    padding: 0px 200px;
    justify-content: center;
    height: 460px;
    align-items: center;
}

#home::before {
    content: "";
    background: url(img/backgroundgym.png) no-repeat center center/cover;
    position: absolute;
    height: 650px;
    width: 100%;
    z-index: -1;
    opacity: 0.99;
}

#home h1 {
    color: #dde308;
    text-align: center;
    padding-top: 250px;
}

#home p {
    color: white;
    text-align: center;
    font-size: 2.2rem;
}

/* Services Section */
#services {
    margin: 34px;
    display: flex;
}

#services .box {
    border: 2px solid brown;
    padding: 34px;
    margin: 3px 6px;
    border-radius: 28px;
    background-color: grey;
}

#services .box img {
    height: 160px;
    margin: auto;
    display: block;
}

#services .box p {
    font-size: 1.3rem;
}

/* client section */
#client-section {
    content: "";
    background: url(img/client.png) no-repeat center center/cover;
    position: relative;
    /* height: 600px; */
    width: 100%;
    z-index: -1;
    opacity: 0.99;
}
#clients {
    display: flex;
    justify-content: center;
    align-items: center;
}

#client img {
    height: 44px;
}

.client-items {
    padding: 34px;
}

/* .service-container::before{
    content: "";
    background: url(img/Ropepress.png) no-repeat center top/cover;
    position: absolute;
    height: 100%;

    width: 100%;
    z-index: -1;
    opacity: 0.89; 
} */
/* Contact Section */
#contact {
    position: relative;
    height: 700px;
    }
#contact::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 700px;
    z-index: -1;
    opacity: 0.99;
    background: url(img/contact.png)no-repeat center top/cover;
}

#contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 34px;
}

#contact-box input,
#contact-box textarea {
    width: 100%;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
}

footer {
    background-color: black;
    color: wheat;
    padding: 9px 20px;
    justify-content: center;
    align-items: center;
}

/* Utility classes */
.h-primary {
    font-size: 3rem;
    padding-top: 80px;
    text-align: center;
}

h1 {
    margin: 19px 2px;
}

.h-secondary {
    font-size: 2.3rem;
    padding: 12px;
    text-align: center;
}

.btn2 {
    border: 2px solid black;
    padding: 4px 8px;
    margin: 15px 142px;
    font-size: 0.89rem;
    border-radius: 15px;
    background-color: rgb(209 28 28);
    width: 81px;
    cursor: pointer;
}

.btn {
    border: 2px solid black;
    padding: 4px 8px;
    margin: 7px 9px;
    font-size: 1.5rem;
    border-radius: 15px;
    cursor: pointer;
    background-color: #c05814;
}

.btn :hover {
    color: rgb(236, 82, 82);
    cursor: pointer;
}
.btn2 :hover {
    color: rgb(236, 82, 82);
    cursor: pointer;
}

.center {
    text-align: center;
}
.form-group{
    font-size: 1.3rem;
    font-weight: bolder;
}
body,html{
    padding: 0px;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
