@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
* {
  -moz-appearance: none;
    appearance: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  /*overflow-x: hidden;*/
}
body {
display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 100px;
  margin: 0 auto;
font-size: var(--font-size-small);
  background-color: white;
  width: 100vw;
}
.lucide {
  width: 20px;
  height: 20px;
}
#hero {
  width: 90vw;
  border-radius: 40px;
  margin-top: 80px;
  box-shadow: 10px 10px 30px #d5d5d5;
}
#hero-text-wrap {
  display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
  text-align: center;
  gap: 30px;
}
#hero-text-h2, #hero-text-h3 {
font-family: "Rubik";
}
#hero-text-h2 {
  font-weight: 600;
  font-size: var(--hero-h2);
}
#hero-text-h3 {
  font-weight: normal;
  font-size: var(--hero-h3);
}
#hero-button {
  color: white;
  align-self: center;
}
#hero-button > svg {
  transition-duration: 0.3s;
}
#hero-button:active > svg, #hero-button:hover > svg {
  transform: translateX(10px);
}
#trust {
  display: flex;
  text-align: center;
  margin-top: -50px;
  width: 100vw;
  gap: 40px;
}
#trust > p > span {
  font-weight: bold;
  font-size: 110%;
}
#star-wrap {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 5px;
}
.star {
  width: 15px;
  height: 15px;
  object-fit: cover;
}
.google-map-logo {
  width: 160px;
  height: 50px;
  display: block;
  object-fit: contain;
}
#rating-images-wrap {
  display: inline-flex;
  margin-top: 10px;
}
.rating-images {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: -10px;
  border: 3px solid white;
}
.rating-images:first-child {
  margin-left: 0;
  border: none;
}
@keyframes marquee {
  0% {
    /*transform: translateX(0);*/
    
  }
  100% {
    transform: translateX(-100%);
    
  }
}
#trusted-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
 place-items: center;
 row-gap: 20px;
}
.brands {
  object-fit: contain;
  width: 100px;
  height: 50px;
  filter: invert(60%);
}

#reason {
  padding: 50px 0 100px;
  background-color: #f4f4f4;
  border-radius: 40px;
  width: 95vw;
  display: flex;flex-flow: column nowrap;
    align-items: center;
    gap: 100px;
}
#reason-head {
  width: 90vw;
  margin: auto;
  text-align: center;
}
#reason-body {
  display: flex;
}
#reason-body > li {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  gap: 10px;
  height: 450px;
  color: white;
  border-radius: 40px;
  background-size: cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 10px 10px 20px gray;
  transition-duration: 0.3s;
}
#reason-body > li:hover {
  transform: rotate(2deg);
}
#reason-body > li::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(10, 10, 10, 0.7);
  width: 100%;
  height: 100%;
}
#reason-body > li > p {
  margin: 0 auto 30px;
  width: 80%;
}
#choose-ul-bold {
  display: block;
  font-weight: 500;
}
#our-promise {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  /*gap: 15px;*/
  width: 90%;
  outline: 1px solid darkgray;
  padding: 25px;
  border-radius: 30px;
}
#our-promise > p {
  margin-top: 20px;
}
#our-promise > button:hover {
  transform: translateX(7px);
}
#services-wrap {
  font-family: "Rubik";
  /*display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 5px;*/
  text-align: center;
  font-weight: normal;
  padding-top: 50px;
}
#services-list {
  display: grid;
  grid-template-columns: repeat(2, 45vw);
  place-items: center;
  /*margin-top: 40px;*/
}
#services-list > div {
  width: 100%;
  height: 70px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 6px;
  border: 1px solid rgba(50, 50, 50, 0.3);
  transition-duration: 0.3s;
  backdrop-filter: blur(30px);
  font-size: var(--font-size-small);
}
#services-list > div:last-child {
  grid-column: span 2;
}
#services-list > div:hover {
  transform: translateY(-5px);
  background-color: transparent;
}
#meet-them {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 5px;
}
#meet-flow-parent {
  width: 90vw;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 20px;
}
.meet-flow-child {
  background-size: cover;
  border-radius: 50px;
  box-shadow: 10px 10px 10px lightgray;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  color: white;
  transition-duration: 0.3s;
}
.meet-flow-child span {
  font-family: "Rubik";
}
.meet-flow-child:nth-child(odd):hover {
  transform: rotate(-2deg);
}
.meet-flow-child:nth-child(even):hover {
  transform: rotate(2deg);
}
.meet-flow-child > * {
  margin: 0 0 50px 50px;
}
.meet-flow-child > *:first-child {
  margin-bottom: 5px;
}
.meet-flow-child::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 1));
}

.meet-flow-child:nth-child(1) {
  background: url("/assets/406.jpg") no-repeat center / cover;
}
.meet-flow-child:nth-child(2) {
  background: url("/assets/465.jpg") no-repeat left / cover;
}
#meet-flow-parent > button {
  /*margin-top: -50px;*/
}
#testimonial {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 5px;
  text-align: center;
}
#testimonial img {
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 10px 10px 20px gray;
}
#carousel-wrap {
  display: flex;
  flex-flow: column;
  gap: 40px;
  width: 85vw;
}
#carousel-slide {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  overflow: auto;
  gap: 50px;
  width: 85vw;
  margin: 0 auto;
}
#carousel-slide div {
  padding: 20px 0;
  font-family: "Rubik";
}
#carousel-slide div blockquote {
  margin-top: 20px;
}
#carousel-slide div cite {
  display: block;
  text-align: right;
}
#arrow-wrap {
  display: flex;
  flex-flow: row nowrap;
  gap: 20px;
}
.arrow {
  width: 40px;
  height: 40px;
  border: 1px solid lightgray;
  border-radius: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
#contact {
  text-align: center;
  display: flex;
  gap: 5px;
  flex-flow: column nowrap;
  align-items: center;
  overflow: hidden;
  width: 100vw;
  padding: 50px 0;
}
#call-to-action {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  gap: 10px;
  height: 400px;
  color: white;
  border-radius: 50px;
  /*background: url("assets/gym-workout-66d087d56ef90.jpg") no-repeat center / cover;*/
  background: url("./gym-workout-66d087d56ef90.jpg") no-repeat center / cover;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 30px 30px 30px 30px;
}
#call-to-action::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  margin: -30px;
}
#cta-btn-container {
  display: inline-flex;
  width: 100%;
  justify-content: space-evenly;
  margin-top: 90px;
}
#call-to-action-button, #call-to-action-button-negative {
  height: 50px;
  width: 40%;
  border: none;
  border-radius: 15px;
  margin: 0;
}
#call-to-action-button {
  background-color: white;
  color: black;
}
#call-to-action-button-negative {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}
#google-map-container {
  width: 90vw;
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-flow: column nowrap;
  align-content: center;
  box-shadow: 10px 10px 10px lightgray;
}
#google-map {
  min-width: 400px;
  height: 500px;
  border: none;
}
#google-map:focus {
  outline: none;
}
footer {
  width: 100vw;
  background-color: #171A20;
  display: flex;
  flex-flow: column nowrap;
  align-items: ;
  padding: 20px;
  color: white;
  gap: 10px;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: underline white;
  color: white;
}

#footer-ql-wrap {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 10%;
  margin-top: 50px;
}

.footer-ql {
  list-style-type: none;
  font-family: "Rubik";
  color: white;
  font-weight: bold;
  width: 40%;
}
.footer-ql li {
  height: 40px;
  display: grid;
  align-items: center;
}
.footer-ql a {
  color: lightgray;
  font-weight: 100;
}
#social-link {
  text-align: center;
}
#social-link-inline {
  display: inline-flex;
  gap: 20px;
  margin: 20px 0;
  
}
address {
  line-height: 40px;
  display: flex;
  flex-flow: column;
}
@media only screen and (min-width: 0) and (max-width: 699px) {
  button {
    width: 40vw;
    height: 60px;
    border: none;
  }
 #ql-container {
    display: none;
  }
  #dropdown-button {
    
  }
  #hero {
    display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding-top: 50px;
  }
  #hero-img {
    width: 100%;
    height: 400px;
   
  }
  #hero-text-wrap {
    height: 100%;
  width: 100%;
  }
  #hero-text-h2, #hero-text-h3 {
    padding: 0 30px;
  }
  #hero-button {
    width: 40vw;
    height: 60px;
  }
  #trust {
    flex-flow: column nowrap;
    align-items: center;
  }
  #star-wrap {
    width: 100%;
  }
  #trusted-brands {
    width: 80%;
  }
  #choose-ul-bold {
    
  }
  #reason-body {
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
  }
  #reason-body > li {
    width: 90%;
  }
  #services-list {
    gap: 5vw;
  }
  #services-list > div {
    
  }
  #meet-flow-parent {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 30px;
  gap: 20px;
  }
  .meet-flow-child {
    width: 100%;
  height: 500px;
  }
  #testimonial img {
    width: 60vw;
  height: 400px;
  }
  #call-to-action {
    width: 90vw;
  }
  #call-to-action-button {
    
  }
}
@media only screen and (min-width: 700px) {
  body:has(#menu-checkbox:checked) {
  overflow: scroll;
}
  #menu {
    display: none;
  }
  nav {
    height: 60px;
  }
  body:has(#menu-checkbox:checked) #dropdown {
    display: none;
  }
  body:has(#menu-checkbox:checked) ul#navbar {
    background-color: white;
  }
  #hero {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }
  #hero-text-wrap {
    height: 100%;
  }
  #hero-text-h2 {
    width: 80%;
    
    text-wrap: balance;
  }
  #hero-text-h3 {
    
  }
  #hero-img {
    width: 100%;
    height: 90%;
    align-self: end;
  }
  #hero-button {
    
    width: 25vw;
    height: 60px;
    margin: 0;
  }
  #trust {
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  #star-wrap {
    width: 40%;
  }
  #trusted-brands {
    width: 40%;
  }
  #reason > ul {
    width: 100%;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    place-items: center;
  }
  #reason > ul > li {
    width: 100%;
  }
  #choose-ul-bold {
    
  }
  #our-promise {
    width: 90%;
  }
  #services-list {
    grid-template-columns: repeat(5, 18vw);
    place-content: center;
    gap: 2vw;
  }
  #services-list > div:last-child {
    grid-column: span 3;
  }
  button {
    height: 60px;
    
    width: 200px;
  }
  #meet-flow-parent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }
  .meet-flow-child {
    width: 100%;
    height: 400px;
  }
  #testimonial img {
    width: 40vw;
  height: 400px;
  }
  #call-to-action {
    width: 70vw;
  }
  }
/*@media only screen and (orientation: landscape) {
  #hero {
    height: 120dvh;
    
  }
  #hero-button {
    margin-top: ;
  }
}*/
/*@media only screen and (min-width: 2000px) {
  body {
    width: 70vw;
  }
}*/