@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Syne", sans-serif;
  color: var(--primary-black);
}

:root {
  /* Colors */

  --primary-blue: #0961df;
  --primary-black: #1f1f1f;
  --primary-yellow: #fac02a;
  --primary-gray: #efefef;
  --light-blue: #337de4;
  --secondary-blue: #89c7fc;
  --body-text: #9c9c9c;
  --white-body-text: #ffffff;
}

/* Universals */

h1 {
  font-size: 60px;
  font-weight: 700;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  text-transform: uppercase;
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  font-weight: 400;
  color: var(--body-text);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--white-body-text);
  font-size: 18px;
  font-weight: 500;
  transition: 0.2s ease;
}

button {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 18px;
  height: 3rem;
  background: var(--primary-blue);
  color: var(--white-body-text);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s ease;
}

button:hover {
  background: var(--light-blue);
  transition: 0.2s ease;
}

.separator {
  content: "";
  width: 18%;
  height: 3px;
  border-radius: 100px;
  background-color: var(--primary-blue);
  margin-bottom: 35px;
}

/* Hero Section */

.hero {
  background: url(../img/hero\ bg\ 2.jpg);
  background-size: cover;
  background-position: 0 -80px;
  height: 100vh;
  padding: 0 82px;
}

.hero nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
}

.hero nav #logo {
  font-size: 30px;
  font-weight: 700;
  color: var(--white-body-text);
}

.hero nav .nav_links {
  display: flex;
  column-gap: 5rem;
}

.hero nav a:hover {
  color: var(--primary-blue);
  transition: 0.2s ease;
}

.hero .sign-up {
  width: 12rem;
}

.hero nav .sign-up {
  margin-left: 3rem;
}

.hero-text {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.hero h1 {
  color: var(--white-body-text);
  width: 50%;
}

.hero h3 {
  color: var(--white-body-text);
  width: 47%;
  line-height: 1.8rem;
}

.hero .hero-text button {
  margin-top: 1rem;
}

/* Why Us Section */

.why-us {
  text-align: center;
  margin-top: 100px;
  padding: 0 82px;
}

.why-us .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-us p {
  line-height: 1.5rem;
}

.why-us .benefits {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
}

.why-us .benefits .benefit .benefit_icon img {
  padding: 1rem;
  box-shadow: 0 0 20px #eeeeee;
  border-radius: 10px;
}

.why-us .benefits .benefit h4 {
  margin: 20px 0;
}

/* Services Section */

.services {
  margin-top: 100px;
  padding: 0 82px;
  text-align: center;
}

.services .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services .programs {
  margin: 4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services .programs i {
  font-size: 30px;
  cursor: pointer;
}

.services .programs .program {
  width: 17rem;
  height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  cursor: pointer;
}

.services .programs .program.running {
  background: url(../img/running.jpg);
  background-size: cover;
  background-position-x: -120px;
}

.services .programs .program.muscle {
  background: url(../img/muscle\ building.jpg);
  background-size: cover;
  background-position-x: -70px;
}

.services .programs .program.meditation {
  background: url(../img/meditation.jpg);
  background-size: cover;
  background-position-x: -40px;
}

.services .programs .program.cardio {
  background: url(../img/cardio.jpg);
  background-size: cover;
  background-position: center;
}

.services .programs .program .program-title {
  color: var(--white-body-text);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
}

.services button {
  width: 10rem;
}

/* Key Pillars Section */

.key-pillars {
  margin-top: 100px;
  padding: 0 82px;
}

.key-pillars h3 span {
  color: var(--primary-blue);
}

.key-pillars .pillars {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
}

.key-pillars .pillars .pillar .container {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1rem;
}

.key-pillars .pillars .pillar i {
  font-size: 30px;
  color: var(--primary-blue);
  padding: 1rem;
  box-shadow: 0 0 20px #eeeeee;
  border-radius: 10px;
}

.key-pillars .pillars .pillar p {
  margin-bottom: 40px;
  line-height: 1.5rem;
}

/* Discount Section */

.descount {
  margin-top: 60px;
  padding: 125px 192px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: url(../img/descount\ bg.jpg);
  background-size: cover;
}

.descount h2 {
  color: var(--secondary-blue);
  margin-bottom: 15px;
}

.descount p {
  color: var(--white-body-text);
  line-height: 1.5rem;
}

.descount button {
  width: 8rem;
}

/* Change Section */

.change {
  margin-top: 100px;
  padding: 0 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.change h2 {
  text-transform: unset;
}

.change h2 span {
  color: var(--primary-blue);
}

.change p {
  margin-top: 36px;
  line-height: 1.5rem;
}

.change button {
  margin-top: 62px;
  width: 9rem;
}

.change img {
  width: 500px;
  border-radius: 1rem;
}

/* Trainers Section */

.trainers {
  margin-top: 100px;
  padding: 68px 82px 68px 82px;
  background-color: var(--primary-gray);
  background-image: url(../img/trainer.png);
  background-size: 400px 500px;
  background-repeat: no-repeat;
  background-position: top right 50px;
}

.trainers .separator {
  margin: 0;
  width: 18%;
}

.trainers h2 {
  text-transform: unset;
}

.trainers p {
  margin-top: 64px;
  line-height: 1.5rem;
}

.trainers .trainer-info {
  margin-top: 44px;
}

.trainers .trainer-info h3 {
  margin-bottom: 5px;
}

.trainers .trainer-info p {
  margin-top: 0;
}

.bg_buttons {
  padding-left: 30rem;
  display: flex;
  column-gap: 0.5rem;
}

.bg_buttons i {
  padding: 0.4rem;
  font-size: 30px;
  border-radius: 10px;
}

.bg_buttons .previous-button {
  background: var(--white-body-text);
  cursor: pointer;
}

.bg_buttons .next-button {
  background: var(--primary-black);
  color: var(--white-body-text);
  cursor: pointer;
}

/* Testimonials Section */

.testimonials {
  margin: 100px 0;
  padding: 0 82px;
  display: flex;
}

.testimonials .testimonials-img {
  width: 650px;
  height: 932px;
  background: url(../img/tonified\ man.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 40px;
}

.testimonials .right {
  margin-left: 50px;
}

.testimonials .right h2 {
  width: 100%;
  margin-top: 36px;
  text-transform: unset;
}

.testimonials .right .separator {
  margin-bottom: 6rem;
}

.testimonials .testimonial {
  background: var(--white-body-text);
  box-shadow: 0 0 37px #f1f1f1;
  position: absolute;
  left: 35rem;
  right: 3rem;
  padding: 70px 60px;
  border-radius: 20px;
}

.testimonials .testimonial .stars {
  display: flex;
  column-gap: 12px;
}

.testimonials .testimonial .stars i {
  font-size: 24px;
  color: var(--primary-yellow);
}

.testimonials .testimonial p {
  line-height: 1.5rem;
  margin: 36px 0;
}

.testimonials .testimonial .testimonial_person {
  display: flex;
  align-items: center;
}

.testimonials .testimonial .testimonial_person .testimonial_person_info {
  padding-left: 18px;
}

.testimonials .testimonial .testimonial_person img {
  width: 70px;
  height: 70px;
  border-radius: 10rem;
  box-shadow: 0 0 1rem #eeeeee;
}

.testimonials .testimonial .testimonial_person p {
  margin: 0;
}

.testimonials .bg_buttons .previous-button {
  background: var(--primary-gray);
  cursor: pointer;
}
