/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

/* Root Styles */
:root {
  --pri-red: #dc1b1b;
  --pri-white: #f4f4f4;
  --pri-blk: #181818;
  --pri-gry: #959595;
}

/* General Styles */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--pri-blk);
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

main {
  padding-top: 10vh;
}

.static-logo {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  display: none;
}

.static-logo h1 {
  font-size: 2rem;
  color: var(--pri-white);
  font-weight: 800;
}

.static-logo h1 span {
  font-weight: 200;
  font-style: italic;
}

.static-social {
  position: fixed;
  display: flex;
  flex-direction: column;
  color: var(--pri-white);
  left: 2rem;
  bottom: 35%;
}

.static-social a i {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: var(--pri-white);
}

/* Utilities Styles */

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 0.65rem;
  transition: all ease 0.7s;
}

.btn-primary {
  color: var(--pri-white);
  background: var(--pri-red);
}

.btn-primary:hover {
  background: var(--pri-white);
  color: var(--pri-blk);
}

/* HEADER STYLES */

header {
  height: 100%;
  background: linear-gradient(to bottom, #18181800, #181818);
}

/* Navbar */

.navbar {
  height: 10vh;
  border-bottom: 1px solid #e5e5e5;
  background: var(--pri-blk);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

.navbar-container {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navbar Logo */
.navbar-logo h1 {
  font-weight: 100;
  color: #fff;
  font-style: unset;
}

.navbar-logo h1 span {
  font-style: italic;
  font-weight: 900;
}

/* Navbar Links */

.mainMenu {
  display: flex;
}

.mainMenu li a {
  color: var(--pri-gry);
  font-size: 14px;
  line-height: 16px;
  margin-left: 2rem;
  letter-spacing: 0.05em;
}

.mainMenu .current {
  color: var(--pri-red);
}

/* Hamburger Menu */

.hamburger {
  position: relative;
  display: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  outline: none;
  border: none;
  background: none;
}

.hamburger .bar,
.hamburger:before,
.hamburger:after {
  content: '';
  width: 100%;
  height: 5px;
  margin: 6px 0px;
  background: var(--pri-red);
  display: block;
}

.hamburger.is-active:before {
  transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger.is-active:after {
  transform: rotate(45deg) translate(-9px, -8px);
}

.hamburger.is-active .bar {
  opacity: 0;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 98;
  background-color: var(--pri-blk);
  transition: 0.4s;
}

.mobile-nav.is-active {
  left: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
  text-align: center;
  color: #f4f4f4;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.4s;
}

.mobile-nav a:hover {
  color: var(--pri-red);
}

/* Showcase Styles */

#showcase {
  height: 110vh;
  position: relative;
  background: linear-gradient(to bottom, #181818, #1818188c);
}

#showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('../img/tredmills-2.jpg') no-repeat center center/cover;
}

.showcase-container {
  color: var(--pri-white);
  width: 80%;
  margin: auto;
  height: 100%;
  display: flex;
}

.showcase-content {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-content h1 {
  font-weight: 900;
  font-size: 4rem;
  margin-bottom: 2rem;
}

.showcase-content h1 span span {
  font-weight: 100;
  font-style: normal;
}

.showcase-content p {
  margin-bottom: 1rem;
  /* width: 50%; */
  font-weight: 300;
  line-height: 1.4;
}

.showcase-content .showcase-btns {
  display: flex;
  justify-content: space-between;
  width: 65%;
  margin-top: 1rem;
}

.showcase-content .showcase-btns .btn {
  width: 45%;
  text-align: center;
}

/* Christmas Opening Times */

.showcase-times {
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timetable-container {
  width: 90%;
  margin: auto;
  border: 3px solid var(--pri-white);
  padding: 2rem;
  border-radius: 1rem;
}

.timetable-heading {
  text-align: center;
}

.timetable-heading h2 {
  border-bottom: 2px solid white;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 900;
}

.timetable-heading span {
  font-weight: 100;
  font-size: 2.5rem;
  font-style: italic;
}

.timetable-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.timetable-item hr {
  width: 2px;
  background: var(--pri-white);
  height: 20px;
}

.timetable-item h3 {
  font-size: 1.3rem;
  font-weight: 100;
}

.timetable-item h4 {
  font-weight: 900;
  font-style: italic;
  font-size: 1.4rem;
}

.offer__info {
  margin-bottom: 1rem;
}

.offer__info h3 {
  font-weight: 200;
  display: flex;
  justify-content: space-between;
  font-size: 1.75rem;
}

.offer__info h3 span {
  font-weight: 900;
  font-style: italic;
}

/* LATEST - INSTAGRAM FEED */

#latest-section {
  height: 100vh;
  padding-bottom: 5rem;
  position: relative;
  top: 0;
  left: 0;
}

#latest-section .latest-watermark {
  font-size: 10rem;
  position: absolute;
  color: rgba(95, 93, 93, 0.5);
  z-index: -1;
}

.latest-container {
  width: 90%;
  margin: auto;
}

.latest-container h2 {
  font-size: 3rem;
  color: var(--pri-white);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.latest-container h2 span {
  color: var(--pri-red);
  font-style: italic;
  font-weight: 200;
}

.latest-container p {
  color: var(--pri-white);
  width: 40%;
  font-weight: 300;
  line-height: 1.4;
}

.insta-feed {
  width: 90%;
  margin: auto;
  margin: 3rem auto;
}

/* Team Section */

#team-section {
  height: 100vh;
  padding-bottom: 5rem;
  position: relative;
  top: 0;
  left: 0;
}

#team-section .team-watermark {
  font-size: 10rem;
  position: absolute;
  color: rgba(95, 93, 93, 0.5);
  z-index: -1;
}

.team-container {
  width: 90%;
  margin: auto;
}

.team-container h2 {
  font-size: 3rem;
  color: var(--pri-white);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.team-container h2 span {
  color: var(--pri-red);
  font-style: italic;
  font-weight: 200;
}

.team-container p {
  color: var(--pri-white);
  width: 40%;
  font-weight: 300;
  line-height: 1.4;
}

.team-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.team-img {
  width: 100%;
  height: 60vh;
  background: #f4f4f4;
  border-radius: 1rem 7rem 1rem 1rem;
}

.team-img-1 {
  background: url('/img/ange-bg.png') no-repeat center center/cover;
  width: 80%;
  height: 100%;
  margin: auto;
}

.team-img-2 {
  background: url('/img/den-bg.png') no-repeat center center/cover;
  width: 80%;
  height: 100%;
  margin: auto;
}

.team-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
}

.team-link h3 {
  font-size: 2rem;
  font-style: italic;
  letter-spacing: 1.7px;
  color: var(--pri-white);
}

.team-link .btn {
  width: 8%;
  margin-left: 2rem;
  text-align: center;
  color: var(--pri-blk);
}

.team-link .btn i {
  font-size: 2rem;
}

/* PT Section */

#pt-section {
  height: 100%;
  position: relative;
  padding-top: 2rem;
}

.pt-intro {
  background: var(--pri-white);
  max-width: 60%;
  padding: 3rem;
  border-radius: 1rem 1rem 7rem 1rem;
  margin-left: 5%;
}

.pt-intro h2 {
  font-size: 3rem;
  color: var(--pri-blk);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.pt-intro h2 span {
  font-style: italic;
  font-weight: 200;
  color: var(--pri-red);
}

.pt-intro p {
  margin-bottom: 1rem;
  font-weight: 300;
}

/* HOME EQIPMENT/MEMBERSHIP */

#home-equip-members {
  background: linear-gradient(to bottom, #181818, #181818ce);
  position: relative;
}

#home-equip-members::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/machine-room.jpg') no-repeat center center/cover;
  z-index: -1;
}

/* EQUIPMENT SECTION */

#equipment {
  padding: 10rem 0 5rem 0;
}

.equipment-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: relative;
}

.equipment-container div {
  width: 50%;
}

/* Equipment Img */

.equipment-img {
  background: url('/img/FlexAppeal_Equipment_Image-01.png') no-repeat center
    center/cover;
  height: 60vh;
}

/* Equipment Content */

.equipment-content {
  margin-right: 10%;
  z-index: 1;
}

.equipment-watermark {
  font-size: 9rem;
  position: absolute;
  top: 0;
  right: 0;
  color: rgba(95, 93, 93, 0.5);
  z-index: 0;
}

.equipment-content h2 {
  color: var(--pri-white);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.equipment-content h2 span {
  font-weight: 200;
  font-style: italic;
  color: var(--pri-red);
}

.equipment-content p {
  color: var(--pri-white);
  margin-bottom: 0.7rem;
  font-weight: 300;
  line-height: 1.4;
}

.equipment-content p:nth-child(4) {
  font-style: italic;
}

.equipment-content .equipment-content-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 200;
}

.equipment-content-grid ul {
  margin-bottom: 1rem;
}

.equipment-content-grid ul li {
  color: var(--pri-white);
  margin-bottom: 0.5rem;
  font-weight: 200;
}

/* MEMBERSHIP SECTION */

.membership-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
}

.membership-watermark {
  font-size: 9rem;
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(95, 93, 93, 0.5);
  z-index: -1;
}

.membership-container div {
  width: 50%;
}

.membership-content {
  margin-left: 10%;
}

.membership-content h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--pri-white);
}

.membership-content h2 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

.membership-content p {
  color: var(--pri-white);
  padding: 1rem 0;
  font-weight: 300;
  line-height: 1.4;
}

.membership-img {
  background: url('/img/FlexAppeal_Membership_Image-01-01.png') no-repeat center
    center/cover;
  height: 60vh;
}

/* Mebership Page */

.membership-page {
  height: 100vh;
  position: relative;
  background: linear-gradient(to bottom, #181818, #181818af);
}

.membership-page::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/freeweights/fw-1.jpg') no-repeat center center/cover;
  z-index: -1;
}

.membership-page-watermark {
  font-size: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(95, 93, 93, 0.5);
  z-index: 1;
}

.membership-page-container {
  width: 90%;
  margin: auto;
}

.membership-page-title {
  height: 20vh;
  margin-bottom: 3rem;
}

.membership-page-title h2 {
  color: var(--pri-white);
  font-weight: 900;
  font-size: 3rem;
  margin-top: 3rem;
}

.membership-page-title h2 span {
  font-weight: 300;
  color: var(--pri-red);
  font-style: italic;
}

.membership-page-price-table {
  width: 100%;
  height: 50vh;
  display: grid;
  grid-template-columns: auto auto;
  gap: 1rem;
}

.membership-page-price-table .direct-debit {
  grid-column: 1 / span 2;
  border-bottom: 1px solid var(--pri-white);
  display: flex;
  align-items: flex-end;
}

.direct-debit-container {
  width: 40%;
  display: flex;
  justify-content: space-between;
  color: var(--pri-white);
  align-items: center;
  margin-bottom: 2rem;
}

.direct-debit-container div h2 {
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.direct-debit-container div h2 span {
  font-weight: 200;
}

.payasugo {
  margin-top: 2rem;
  border-right: 1px solid var(--pri-white);
  padding-right: 10%;
}

.payasugo > h2 {
  color: var(--pri-white);
  font-weight: 900;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 1.3px;
}

.payasugo-container h2 {
  color: var(--pri-white);
  margin-bottom: 1rem;
  font-weight: 200;
  font-style: italic;
  font-size: 1.5rem;
}

.payasugo-container h3 {
  color: var(--pri-white);
  font-weight: 900;
  font-size: 1.5rem;
}

.payasugo-container div {
  display: flex;
  justify-content: space-between;
}

.block {
  margin-top: 2rem;
  padding-left: 10%;
}

.block > h2 {
  color: var(--pri-white);
  font-weight: 900;
  font-size: 2rem;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 1.3px;
}

.block-container h2 {
  color: var(--pri-white);
  margin-bottom: 1rem;
  font-weight: 200;
  font-style: italic;
  font-size: 1.5rem;
}

.block-container h2 span {
  font-weight: 200;
  font-size: 0.8rem;
}

.block-container h3 {
  color: var(--pri-white);
  font-weight: 900;
  font-size: 1.5rem;
}

.block-container div {
  display: flex;
  justify-content: space-between;
}

/* FOOTER STYLES */

#footer {
  padding: 4rem 0;
  margin-top: 2rem;
}

.footer-container {
  width: 90%;
  margin: auto;
  display: flex;
  color: var(--pri-white);
}

.footer-container div {
  margin-right: 10%;
}

.footer-container h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-address p {
  font-weight: 400;
}

.footer-opening p,
.footer-contact p {
  color: var(--pri-red) !important;
  margin-bottom: 1rem;
}

.footer-opening h5,
.footer-contact h5 {
  font-weight: 400;
}

/* THE GYM PAGE */

.the-gym-page {
  position: relative;
  background: linear-gradient(to bottom, #181818, #1818188a);
}

.the-gym-page::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/freeweights/fw-1.jpg') no-repeat center center/cover;
  z-index: -2;
}

.the-gym-page-watermark {
  font-size: 10rem;
  color: rgba(95, 93, 93, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  /* z-index: -1; */
}

.thegym-heading {
  width: 90%;
  margin: auto;
  margin-top: 3rem;
}

.thegym-heading h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--pri-white);
}

.thegym-heading h2 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

#about-content {
  padding: 3rem 0;
}

.about-content-container {
  width: 90%;
  margin: auto;
  margin-bottom: 2rem;
}

.about-content-info h3 {
  color: var(--pri-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.about-content-info h3 span {
  color: var(--pri-red);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 200;
  font-style: italic;
}

.about-content-info p {
  text-align: justify;
  color: var(--pri-white);
  font-weight: 300;
  line-height: 1.4;
  width: 70%;
  margin-bottom: 0.5rem;
}

/* About Page Banner */

.thegym-banner {
  height: 100%;
  padding: 3rem 0;
}

.thegym-banner-container {
  width: 90%;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.thegym-banner-content {
  background: var(--pri-white);
  width: 50%;
  padding: 3rem;
  border-radius: 1rem 1rem 1rem 7rem;
  text-align: justify;
}

.thegym-banner-content h2 {
  color: var(--pri-blk);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.thegym-banner-content h2 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

.thegym-banner-content p {
  color: var(--pri-blk);
  font-weight: 300;
  width: 70%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* ABOUT PAGE SUPPLEMENTS */

.thegym-supplements {
  position: relative;
  margin: 3rem 0;
  padding-bottom: 4rem;
}

.supp-container {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  position: relative;
}

.supp-container div {
  width: 50%;
}

/* Supplement Img */

.supp-img {
  background: url('../img/supps.png') no-repeat center center/cover;
  height: 60vh;
  margin-right: 3rem;
  border-radius: 0 7rem 0 7rem;
}

/* Supplement Content */

.supp-content {
  margin-right: 10%;
  z-index: 1;
  position: relative;
}

.supp-watermark {
  font-size: 6rem;
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(95, 93, 93, 0.5);
  z-index: -1;
}

.supp-content h2 {
  color: var(--pri-white);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.supp-content h2 span {
  font-weight: 200;
  font-style: italic;
  color: var(--pri-red);
}

.supp-content p {
  color: var(--pri-white);
  margin-bottom: 0.7rem;
  font-weight: 300;
  line-height: 1.4;
}

.supp-content p:nth-child(4) {
  font-style: italic;
}

.supp-content .supp-content-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 200;
}

.supp-content-grid ul {
  margin-bottom: 1rem;
}

.supp-content-grid ul li {
  color: var(--pri-white);
  margin-bottom: 0.5rem;
  font-weight: 200;
}

/* TEAM PAGE */

.team-people-container {
  width: 90%;
  margin: auto;
}

.team-people-container > h2 {
  font-size: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.team-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

#team-people {
  padding: 3rem 0;
}

.team-person {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 0.5rem;
  /* border: 3px solid var(--pri-red); */
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
  transition: all ease 0.8s;
  text-align: center;
}

.team-person:hover {
  transform: scale(1.05);
}

.team-person a {
  color: var(--dark-grey);
}

.team-person-img {
  background: var(--dark-grey);
  width: 100%;
  height: 50vh;
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.team-person h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #f4f4f4;
}

.josh {
  background: url('../img/josh-bg.png') no-repeat center center/cover;
}
.anne-marie {
  background: url('../img/anne-bg.png') no-repeat center center/cover;
}
.bradley {
  background: url('../img/brad-bg.png') no-repeat center top/cover;
}
.ang {
  background: url('../img/ange-bg.png') no-repeat center center/cover;
}
.den {
  background: url('../img/den-bg.png') no-repeat center center/cover;
}
.lloyd {
  background: url('../img/lloyd-bg-2.png') no-repeat center center/cover;
}
.charlie {
  background: url('../img/charlie-bg.png') no-repeat center center/cover;
}

.jess {
  background: url('../img/jess-bg03.png') no-repeat center center/cover;
}

.theteam-heading {
  width: 90%;
  margin: auto;
  margin-top: 3rem;
  position: relative;
}

.theteam-heading h1 {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10rem;
}

.theteam-heading h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--pri-white);
}

.theteam-heading h2 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

.theteam-heading p {
  font-size: 1rem;
  width: 60%;
  margin: 1rem 0;
  font-weight: 300;
  line-height: 1.4;
  color: var(--pri-white);
  text-align: justify;
}

#team-page {
  background: linear-gradient(to bottom, #181818, #1818188a);
  position: relative;
}

#team-page::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('../img/Machines/ma-10.jpg') no-repeat center center/cover;
  z-index: -2;
}

#team-page h1 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10rem;
  color: rgba(95, 93, 93, 0.5);
}

/* EQUIPMENT PAGE */

.equipment-page-intro {
  position: relative;
  height: 100%;
  margin-bottom: 5rem;
}

.equipment-page-watermark {
  font-size: 10rem;
  color: rgba(95, 93, 93, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.equipment-page-heading {
  width: 90%;
  margin: auto;
  margin-top: 3rem;
}

.equipment-page-heading h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--pri-white);
  margin-bottom: 1rem;
}

.equipment-page-heading h2 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

.equipment-page-heading p {
  color: var(--pri-white);
  width: 50%;
  font-weight: 300;
  text-align: justify;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.equipment-page-banner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  background: var(--pri-white);
  padding: 1rem 2rem;
  border-radius: 1rem 1rem 1rem 7rem;
  margin: auto;
}

.equipment-page-banner-container img {
  width: 200px;
}

.equipment-page-banner-container img:nth-child(2),
.equipment-page-banner-container img:nth-child(5) {
  width: 200px;
  background: var(--pri-blk);
  padding: 0.5rem;
  border-radius: 0.3rem;
}
.equipment-page-banner-container img {
  width: 200px;
}

/* EQUIPMENT GALLARY */

#equipment-gallary {
  height: 100%;
}

/* .cardio-gallary .ca:hover,
.machine-gallary .ma:hover,
.free-gallary .fw:hover {
  background: rgba(0,0,0,0.2);
  transition: all ease 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} */

/* CARDIO EQUIPMENT */

#equipment-cardio {
  position: relative;
}

.cardio-watermark {
  font-size: 5rem;
  color: rgba(95, 93, 93, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.cardio-container {
  width: 90%;
  margin: auto;
}

.cardio-heading {
  margin: 5rem 0;
}
.machine-heading {
  margin: 5rem 0;
}
.free-heading {
  margin: 5rem 0;
}
.cardio-heading h2 {
  color: var(--pri-white);
  font-size: 2rem;
  font-weight: 900;
}

.cardio-heading h2 span {
  color: var(--pri-red);
  font-style: italic;
  font-weight: 200;
}

/* CARDIO GALLARY */

.cardio-gallary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cardio-gallary .ca {
  height: 50vh;
  background: rgba(95, 93, 93, 0.5);
  border-radius: 1rem;
}

.cardio-gallary .ca-1 {
  background: url('../img/new-cardio-1.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-2 {
  background: url('../img/new-cardio-2.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-3 {
  background: url('../img/tredmill.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-4 {
  background: url('../img/tredmills-1.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-5 {
  background: url('../img/tredmills-2.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-6 {
  background: url('../img/Cardio/ca-6.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-7 {
  background: url('../img/bikes-1.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-8 {
  background: url('../img/bikes-2.jpg') no-repeat center center/cover;
}
.cardio-gallary .ca-9 {
  background: url('../img/Cardio/ca-9.jpg') no-repeat center center/cover;
}

/* MACHINE */

#equipment-machine {
  position: relative;
}

.machine-watermark {
  font-size: 5rem;
  color: rgba(95, 93, 93, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.machine-container {
  width: 90%;
  margin: auto;
}

.machine-heading h2 {
  color: var(--pri-white);
  font-size: 2rem;
  font-weight: 900;
}

.machine-heading h2 span {
  color: var(--pri-red);
  font-style: italic;
  font-weight: 200;
}

/* MACHINE GALLARY */

.machine-gallary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.machine-gallary .ma {
  height: 50vh;
  background: rgba(95, 93, 93, 0.5);
  border-radius: 1rem;
}

.machine-gallary .ma-1 {
  background: url('../img/new-machine-1.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-2 {
  background: url('../img/new-machines-2.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-3 {
  background: url('../img/new-machines-3.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-4 {
  background: url('../img/new-machines-4.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-5 {
  background: url('../img/new-machines-5.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-6 {
  background: url('../img/new-machines-6.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-7 {
  background: url('../img/new-machines-7.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-8 {
  background: url('../img/new-machines-8.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-9 {
  background: url('../img/new-machines-9.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-10 {
  background: url('../img/new-machines-10.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-11 {
  background: url('../img/new-machines-11.jpg') no-repeat center center/cover;
}
.machine-gallary .ma-12 {
  background: url('../img/Machines/ma-12.jpg') no-repeat center center/cover;
}

/* FREE WEIGHT */

#equipment-free {
  position: relative;
}

.free-watermark {
  font-size: 5rem;
  color: rgba(95, 93, 93, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.free-container {
  width: 90%;
  margin: auto;
}

.free-heading h2 {
  color: var(--pri-white);
  font-size: 2rem;
  font-weight: 900;
}

.free-heading h2 span {
  color: var(--pri-red);
  font-style: italic;
  font-weight: 200;
}

/* Free Weight Gallary */

.free-gallary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.free-gallary .fw {
  height: 50vh;
  background: rgba(95, 93, 93, 0.5);
  border-radius: 1rem;
}

.free-gallary .fw-1 {
  background: url('../img/freeweights/fw-1.jpg') no-repeat center center/cover;
}
.free-gallary .fw-2 {
  background: url('../img/freeweights/fw-2.jpg') no-repeat center center/cover;
}
.free-gallary .fw-3 {
  background: url('../img/new-fr-1.jpg') no-repeat center center/cover;
}
.free-gallary .fw-4 {
  background: url('../img/new-fr-2.jpg') no-repeat center center/cover;
}
.free-gallary .fw-5 {
  background: url('../img/new-fr-3.jpg') no-repeat center center/cover;
}
.free-gallary .fw-6 {
  background: url('../img/new-fr-4.jpg') no-repeat center center/cover;
}
.free-gallary .fw-7 {
  background: url('../img/new-fr-5.jpg') no-repeat center center/cover;
}
.free-gallary .fw-8 {
  background: url('../img/new-fr-6.jpg') no-repeat center center/cover;
}
.free-gallary .fw-9 {
  background: url('../img/new-fr-7.jpg') no-repeat center center/cover;
}
.free-gallary .fw-10 {
  background: url('../img/new-fr-8.jpg') no-repeat center center/cover;
}
.free-gallary .fw-11 {
  background: url('../img/new-fr-9.jpg') no-repeat center center/cover;
}
.free-gallary .fw-12 {
  background: url('../img/new-fr-10.jpg') no-repeat center center/cover;
}

/* Strech Room Gallery */

.sr-gallary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sr-gallary .sr {
  height: 50vh;
  border-radius: 1rem;
}

.sr-gallary .sr-1 {
  background: url('/img/sr-1.jpg') no-repeat center center/cover;
}
.sr-gallary .sr-2 {
  background: url('/img/sr-2.jpg') no-repeat center center/cover;
}
.sr-gallary .sr-3 {
  background: url('/img/sr-3.jpg') no-repeat center center/cover;
}

/* Contact Page */

#contact {
  position: relative;
}

.contact-watermark {
  position: absolute;
  font-size: 10rem;
  color: rgba(95, 93, 93, 0.5);
}

.contact-heading {
  width: 90%;
  margin: auto;
  margin-top: 3rem;
  position: relative;
}

.contact-heading h1 {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10rem;
}

.contact-heading h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--pri-white);
}

.contact-heading h2 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

.contact-heading p {
  font-size: 1rem;
  width: 60%;
  margin: 1rem 0;
  font-weight: 300;
  line-height: 1.4;
  color: var(--pri-white);
  text-align: justify;
}

#contact-section {
  width: 90%;
  margin: 4rem auto;
  display: flex;
}

#contact-section form {
  width: 60%;
}
.form-item label {
  color: #f4f4f4;
}

.form-item input,
.form-item select,
.form-item textarea {
  display: block;
  width: 100%;
  padding: 0.5rem;
  border-radius: 0.5rem;
  resize: none;
  outline: none;
  margin: 0.5rem 0;
}

.form-item label span {
  color: var(--pri-clr);
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
  outline: 2px solid var(--pri-clr);
}

form button {
  width: 100%;
  text-align: center;
  padding: 0.5rem;
  background: var(--pri-red);
  border: none;
  border-radius: 0.5rem;
  color: #f4f4f4;
  font-size: 1.2rem;
}

form button:hover {
  opacity: 0.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: auto;
  width: 40%;
}

.contact-methods p {
  color: var(--pri-red) !important;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-left: 2rem;
  font-style: italic;
  font-weight: 200;
}

.contact-methods p span {
  color: #f4f4f4;
  font-weight: 900;
  font-style: normal;
}

/* Personal Training Page */

#pt-page {
  position: relative;
}

.pt-page-watermark {
  position: absolute;
  font-size: 8rem;
  color: rgba(95, 93, 93, 0.5);
}

.pt-page-container {
  width: 90%;
  margin: auto;
  margin-top: 3rem;
  position: relative;
}

.pt-page-container h2 {
  font-weight: 900;
  font-size: 3rem;
  color: var(--pri-white);
}

.pt-page-container h2 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

.pt-page-container p {
  font-size: 1rem;
  width: 60%;
  margin: 1rem 0;
  font-weight: 300;
  line-height: 1.4;
  color: var(--pri-white);
  text-align: justify;
}

.pt-staff {
  width: 90%;
  margin: auto;
  height: 80vh;
  border-radius: 0.5rem;
  display: flex;
  overflow: hidden;
  margin: 3rem auto;
}

.pt-staff div {
  width: 50%;
  /* background: var(--pri-white); */
}

.pt-staff-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f4f4;
  border-radius: 0.5rem;
}

.pt-staff-info h3 {
  font-size: 2.5rem;
  font-weight: 800;
}

.pt-staff-info h3 span {
  color: var(--pri-red);
  font-weight: 200;
  font-style: italic;
}

.pt-staff-info p {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.pt-staff-info .btn {
  text-align: center;
}

.pt-staff-img {
  border: 6px solid var(--pri-red);
  border-radius: 0.5rem;
}

.pt-staff .pt-charlie-img {
  background: url('../img/charlie-bg.png') no-repeat center center/cover;
  height: 100%;
  width: 100%;
  margin: auto;
}

.pt-josh {
  flex-direction: row-reverse;
}

.pt-staff .pt-josh-img {
  background: url('../img/josh-bg.png') no-repeat center center/cover;
  height: 100%;
  width: 100%;
  margin: auto;
}

.pt-staff .pt-jess-img {
  background: url('../img/jess-bg03.png') no-repeat center center/cover;
  height: 100%;
  width: 100%;
  margin: auto;
}

.ninetyFour .ninetyFour__container {
  text-align: center;
  color: white;
}

.ninetyFour .ninetyFour__container p {
  font-weight: 200;
}

.ninetyFour .ninetyFour__container p a {
  font-weight: 200;
  color: white;
}
