.first-section-container {
  width: 100%;
  height: 680px;

  display: flex;
  justify-content: center;
  align-items: flex-end;

  padding: 0 1rem;

  background-image: url('../../../assets/imgs/home/bg-gym.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.first-section-content {
  width: 100%;
  max-width: 1300px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.first-section-descriptions {
  width: 100%;
  max-width: 630px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  color: var(--white9);
}
.first-section-descriptions div {
  padding: 0.5rem 1rem;
  border-radius: 10rem;

  border: 2px solid transparent;
  border-image: linear-gradient(45deg, var(--blue8), var(--blue6)) 1;
}
.first-section-descriptions div span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.first-section-descriptions h2 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  margin: 1.5rem 0;
}
.first-section-descriptions h2 strong {
  color: var(--blue8);
  font-weight: 500;
}
.first-section-descriptions p {
  font-size: 1.1rem;
  line-height: 1.6rem;
}
.first-section-descriptions p strong { font-weight: 600; }
.first-section-descriptions p:nth-child(4) { margin-top: 3rem; }
.first-section-descriptions p:nth-child(4) strong { color: var(--blue8); }

.first-section-descriptions a {
  display: flex;
  align-items: center;
  gap: 0.3rem;

  transition: .3s ease;

  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;

  color: var(--white9);
  background: var(--blue8);
}
.first-section-descriptions a:hover { background: var(--blue7); }

.first-section-content > img {
  width: 100%;
  max-width: 380px;
  max-height: 630px;
}


/* PHONES */
@media (max-width: 600px) {}

/* TABLETS */
@media (max-width: 768px) {
  .first-section-container {
    height: 630px;
    align-items: center;
  }
  .first-section-content { margin-top: 4rem; }
  .first-section-content > img { display: none; }
}

/* LAPTOPS */
@media (max-width: 992px) {}