:root {
  --gold: #ffdc26;
  --black: #1c1c1c;
  --dim-grey: #747474;
  --white: white;
}

a {
  text-decoration: underline;
}

.hero-section {
  width: 100%;
  height: 100vh;
}

.background-video {
  background-image: linear-gradient(90deg, #000000e3 42%, #ffffff05);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: block;
}

.logo-container {
  color: #0c0909;
  width: 50px;
}

.image {
  width: 89px;
  margin-top: 42px;
}

.hero-content-container {
  flex-direction: column;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: block;
  overflow: hidden;
}

.hero-heading {
  text-transform: uppercase;
  margin-top: 70px;
  font-family: Oswald, sans-serif;
  font-size: 48px;
  line-height: 52px;
}

.hero-paragraph {
  color: #ccc;
  width: 45%;
  margin-top: 16px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.hero-btn-container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  max-width: 1440px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  overflow: hidden;
}

.signup-btn {
  border: 2px solid var(--gold);
  background-color: var(--gold);
  color: var(--black);
  text-transform: uppercase;
  border-radius: 100px;
  padding: 22px 48px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  transition: background-color .15s cubic-bezier(.55, .055, .675, .19);
}

.signup-btn:hover {
  background-color: var(--black);
  color: var(--gold);
}

.signup-btn.w--current {
  color: var(--black);
}

.login-btn {
  border: 2px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  background-color: #ffdc2600;
  border-radius: 100px;
  padding: 22px 48px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  transition: background-color .15s cubic-bezier(.55, .055, .675, .19);
}

.login-btn:hover {
  background-color: var(--gold);
  color: var(--black);
}

.cards-section {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
}

.cards-section.mobile {
  display: block;
}

.cards-container {
  align-items: flex-start;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.heading {
  color: var(--black);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 30px;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  line-height: 44px;
}

.paragraph {
  color: var(--dim-grey);
  margin-bottom: 25px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.card-container {
  border-radius: 12px;
  width: 25%;
  margin: 20px 10px;
  box-shadow: 0 3px 12px -10px #000;
}

.card-container.fisrt {
  box-shadow: none;
}

.div-block-2 {
  width: 25%;
  margin: 20px;
}

.div-block-3, .div-block-4 {
  width: 25%;
}

.card-heading {
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  line-height: 22px;
}

.card-content {
  color: var(--dim-grey);
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
}

.card-content-container {
  padding: 20px;
}

.link {
  color: var(--black);
  letter-spacing: 3px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  line-height: 19px;
}

.link:hover {
  color: var(--gold);
}

.own-gym-section {
  padding-bottom: 112px;
}

.own-gym-container {
  justify-content: center;
  align-items: stretch;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.home-gym-img-container {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  width: 50%;
  height: auto;
  overflow: hidden;
}

.home-gym-content-container {
  background-color: #f3f3f3;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  width: 50%;
  height: auto;
  padding: 47px;
}

.paragraph-2 {
  color: var(--dim-grey);
  padding-top: 9px;
  padding-bottom: 19px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.heading-2 {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  line-height: 44px;
}

.video-txt-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.bg-video {
  background-color: #1c1c1c91;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
}

.video-heading {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 48px;
  line-height: 70px;
}

.subscribe-section {
  background-color: var(--gold);
  display: flex;
}

.form-container {
  flex-direction: column;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 70px 5%;
  display: flex;
}

.heading-3 {
  color: var(--black);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  line-height: 40px;
}

.paragraph-3 {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.form-block {
  width: 100%;
}

.form-row {
  justify-content: space-between;
  padding-bottom: 49px;
  display: flex;
}

.form-row.second {
  padding-bottom: 28px;
}

.div-block-6 {
  flex: 1;
  padding-right: 10px;
}

.div-block-7 {
  flex: 1;
  padding-left: 10px;
}

.form {
  padding-top: 60px;
}

.text-field {
  border-style: solid;
  border-width: 1px;
  border-color: var(--gold) var(--gold) #1f1f1f;
  background-color: var(--gold);
  color: #242424;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.text-field::placeholder {
  color: var(--black);
}

.select-field {
  border-style: solid;
  border-width: 1px;
  border-color: var(--gold) var(--gold) #1f1f1f;
  background-color: var(--gold);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.select-field:hover {
  background-color: var(--gold);
  color: var(--black);
}

.text-field-2 {
  border-style: solid;
  border-width: 1px;
  border-color: var(--gold) var(--gold) #1f1f1f;
  background-color: var(--gold);
  color: var(--black);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.text-field-2:hover, .text-field-2:active, .text-field-2:focus {
  background-color: var(--gold);
}

.text-field-2::placeholder {
  color: var(--black);
}

.text-field-3 {
  border-style: solid;
  border-width: 1px;
  border-color: var(--gold) var(--gold) #1f1f1f;
  background-color: var(--gold);
  color: #1f1f1f;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 30px;
}

.text-field-3:focus {
  background-color: var(--gold);
}

.text-field-3::placeholder {
  color: var(--black);
}

.div-block-8 {
  flex-direction: column;
  align-items: center;
  margin-top: 21px;
  transition: background-color .15s cubic-bezier(.55, .055, .675, .19);
  display: flex;
}

.submit-button {
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  border-radius: 100px;
  padding: 24px 45px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  transition: background-color .15s;
}

.submit-button:hover {
  background-color: var(--gold);
  color: var(--black);
}

.contact-section {
  padding-top: 112px;
}

.contact-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.div-block-9 {
  width: 60%;
}

.div-block-10 {
  background-color: #111;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  width: 40%;
  padding: 45px;
}

.heading-4 {
  color: #fff;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  line-height: 44px;
}

.paragraph-4 {
  color: #fff;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.div-block-11 {
  align-items: center;
  margin-top: 22px;
  display: flex;
}

.div-block-12 {
  flex: 1;
}

.text-block {
  color: var(--white);
  padding-left: 20px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
}

.copyright-container {
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 0;
  display: flex;
}

.image-2 {
  width: 84px;
}

.text-block-2 {
  color: #787878;
  text-align: center;
  padding-top: 11px;
  font-family: Roboto, sans-serif;
  line-height: 30px;
}

.legal-link {
  color: #787878;
  text-decoration: none;
}

.legal-link:hover {
  color: var(--gold);
}

.image-3 {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  width: 100%;
  max-width: none;
  height: 100%;
}

.nav-container {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.nav-cta-wrapper {
  display: flex;
}

.image-4 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
  display: block;
}

.hero-content-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.video__text {
  text-align: center;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
}

.video__text._2 {
  font-size: 60px;
  line-height: 60px;
}

.video__text._3 {
  font-size: 75px;
  line-height: 75px;
}

.div-block-13 {
  justify-content: center;
  margin-top: 20px;
  display: flex;
}

.div-block-14 {
  margin-top: 40px;
}

.logo-white {
  color: var(--white);
}

.div-block-15 {
  width: 100px;
}

.prices__container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.price-card {
  background-color: #fff;
  border: 1px solid #0003;
  border-radius: 15px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 2px 6px 2px #0003;
}

.price-card__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
}

.price-card__price {
  text-align: center;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
}

.text-block-3 {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Roboto, sans-serif;
}

.div-block-16 {
  justify-content: center;
  display: flex;
}

.price-card__description {
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: Roboto, sans-serif;
}

.navbar {
  background-color: #0000;
  position: absolute;
  inset: 20px 0% auto;
}

.nav-link {
  color: #fff;
  text-transform: uppercase;
  margin-left: 0;
  margin-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  transition: color .2s;
}

.nav-link:hover {
  color: #ffdc26;
}

.nav-link.w--current {
  color: #fff;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-menu {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  line-height: 14px;
  display: flex;
}

.div-block-17 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
}

.nav-menu-inner {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-span {
  color: var(--gold);
}

.price-card__wrapper {
  min-width: 30%;
}

@media screen and (min-width: 1440px) {
  .hero-section {
    margin-left: auto;
    margin-right: auto;
  }

  .logo-container {
    padding-left: 0%;
    padding-right: 10%;
  }

  .hero-content-container {
    padding-top: 30px;
    padding-left: 5%;
    padding-right: 10%;
  }

  .hero-btn-container {
    padding-left: 5%;
    padding-right: 10%;
  }

  .home-gym-content-container {
    padding: 101px;
  }

  .form-block {
    width: 70%;
  }

  .div-block-10 {
    padding: 103px;
  }

  .paragraph-4 {
    margin-bottom: 43px;
  }

  .image-4 {
    aspect-ratio: auto;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
  }
}

@media screen and (min-width: 1920px) {
  .logo-container {
    margin-top: 45px;
  }

  .hero-content-container {
    padding-top: 169px;
  }
}

@media screen and (max-width: 991px) {
  .hero-section {
    display: block;
  }

  .hero-heading {
    margin-top: 52px;
    font-size: 36px;
    line-height: 42px;
  }

  .hero-btn-container {
    margin-top: 28px;
  }

  .cards-section {
    padding-top: 41px;
    display: block;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
    padding-left: 3%;
    padding-right: 3%;
  }

  .card-container {
    width: 50%;
  }

  .card-container.fisrt {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 70%;
    display: flex;
  }

  .own-gym-container {
    padding-left: 3%;
    padding-right: 3%;
  }

  .home-gym-img-container {
    width: 50%;
  }

  .home-gym-content-container {
    width: 50%;
    padding: 15px;
  }

  .paragraph-2 {
    line-height: 20px;
  }

  .heading-2 {
    font-size: 32px;
    line-height: 38px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .div-block-9 {
    width: 80%;
  }

  .div-block-10 {
    border-top-right-radius: 0;
    border-bottom-left-radius: 18px;
    width: 80%;
  }

  ._3-cards-container {
    display: flex;
  }

  .image-3 {
    object-fit: cover;
    border-top-right-radius: 18px;
    border-bottom-left-radius: 0;
    width: 100%;
    height: 300px;
  }

  .nav-container {
    position: absolute;
    inset: 0% 0% auto;
  }

  .nav-cta-wrapper, .scroll-container {
    display: none;
  }

  .prices__container {
    flex-flow: column;
  }

  .navbar {
    background-color: #ddd0;
    position: absolute;
    inset: 20px 0% auto;
  }

  .icon {
    color: #fff;
  }

  .container {
    justify-content: space-between;
  }

  .nav-menu, .brand {
    flex: 0 auto;
  }

  .menu-button {
    flex: 1;
  }

  .div-block-17 {
    flex: 1;
    display: none;
  }

  .div-block-18 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .background-video {
    background-color: #1c1c1cc7;
    background-image: none;
  }

  .image {
    margin-top: 25px;
  }

  .hero-heading {
    font-size: 32px;
  }

  .hero-paragraph {
    width: 70%;
  }

  .signup-btn {
    padding: 17px 38px;
    font-size: 14px;
  }

  .login-btn {
    padding: 17px 38px;
    font-size: 12px;
  }

  .cards-section {
    overflow: visible;
  }

  .cards-container {
    align-items: center;
  }

  .paragraph {
    width: 95%;
  }

  .card-container {
    width: 75%;
  }

  .card-container.fisrt {
    width: 100%;
    margin-left: 10px;
  }

  .card-container.last {
    margin-right: 20px;
  }

  .card-container.first {
    margin-left: 20px;
  }

  .own-gym-container {
    flex-direction: column;
    align-items: center;
  }

  .home-gym-img-container {
    width: 90%;
  }

  .home-gym-content-container {
    border-top-right-radius: 0;
    border-bottom-left-radius: 18px;
    width: 90%;
    padding: 34px;
  }

  .bg-video {
    height: 50vh;
  }

  .video-heading {
    font-size: 18px;
    line-height: 26px;
  }

  .form-container {
    width: 90%;
  }

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

  .div-block-9, .div-block-10 {
    width: 90%;
  }

  ._3-cards-container {
    flex-direction: row;
    justify-content: flex-start;
    display: flex;
    position: static;
  }

  ._3-cards-container.tablet {
    display: none;
  }

  ._3-cards-container.phone {
    object-fit: contain;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 900px;
    overflow: auto;
  }

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

  .nav-cta-wrapper {
    margin-top: 27px;
    display: block;
  }

  .scroll-container {
    display: block;
    overflow: auto;
  }

  .image-4 {
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }

  .video__text {
    font-size: 8vw;
    line-height: 8vw;
  }

  .video__text._2 {
    font-size: 10vw;
    line-height: 10vw;
  }

  .video__text._3 {
    font-size: 12vw;
    line-height: 12vw;
  }

  .navbar {
    left: 5%;
    right: 5%;
  }

  .nav-link {
    text-align: center;
  }

  .nav-menu {
    background-color: #000;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    position: fixed;
    inset: 0%;
  }

  .menu-button.w--open {
    z-index: 20;
    background-color: #000;
  }

  .div-block-17, .div-block-18 {
    display: block;
  }

  .nav-menu-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    height: 100vh;
    display: flex;
    position: relative;
  }
}

@media screen and (max-width: 479px) {
  .background-video {
    object-fit: fill;
    position: relative;
  }

  .hero-heading {
    margin-top: 70px;
  }

  .hero-paragraph {
    width: 90%;
  }

  .hero-btn-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .cards-section {
    display: block;
  }

  .card-container, .home-gym-img-container {
    width: 100%;
  }

  .home-gym-content-container {
    width: 100%;
    padding-bottom: 49px;
  }

  .form-row {
    flex-direction: column;
    padding-bottom: 30px;
  }

  .form-row.second {
    padding-bottom: 25px;
  }

  .div-block-6 {
    padding-right: 0;
  }

  .div-block-7 {
    padding-left: 0;
  }

  .select-field, .text-field-2 {
    margin-bottom: 35px;
  }

  .contact-container {
    padding-left: 3%;
    padding-right: 3%;
  }

  .text-block {
    font-size: 14px;
  }

  .scroll-container {
    display: block;
    overflow: auto;
  }

  .price-card {
    padding: 20px;
  }

  .price-card__description {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}


