body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #000000;
}

/* GENERAL */
.btn {
  text-transform: uppercase;
}
.btn-red {
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  padding: 10px 24px;
  background-color: #e84551;
  border-color: #e84551;
}

.card {
  margin-top: 40px;
  padding: 60px 20px 0 20px;
  border: 4px solid #ededed;
  border-radius: 0;
  max-width: 380px;
}
.card-text-area {
  min-height: 160px;
}
.card-obs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 20px;
  height: 40px;
  font-size: 10px;
}

.price {
  font-weight: bold;
  color: #e84551;
}

.masthead {
  min-height: 100vh;
  background-image: url(./assets/bg-header.png);
  /* background-size: auto; */
  background-position: left bottom;
  background-repeat: no-repeat;
  background-color: #ea4051;
}

.masthead-left-col {
  height: 100vh;
}
.masthead-text-area {
  max-width: 481px;
}

#app-section {
  /* background-color: #ededed; */
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}

#app-section::before {
  content: "";
  background-color: #ededed;
  top: 85px;
  bottom: 85px;
  width: 100%;
  position: absolute;
}

.img-col {
  text-align: right;
}

.icon-col {
  /* display: flex; */
}

#buy {
  /* min-height: 100vh; */
  background-image: url("./assets/bg-gym.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 140px 0;
}

/* FONTS */
.title {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}

.subtitle {
  font-size: 20px;
  color: #fff;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  font-style: italic;
  color: #e84551;
}

.card-title {
  font-size: 30px;
  font-weight: bold;
}

.card-text-small {
  font-size: 18px;
}

.card-text {
  font-size: 30px;
}

.app-title {
  font-size: 36px;
  font-weight: bold;
  color: #e84551;
}

.app-text {
  margin-top: 26px;
  font-size: 18px;
}

.buy-title {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}
.buy-subtitle {
  font-size: 48px;
  color: #fff;
}
.buy-text {
  font-size: 18px;
  color: #fff;
}

/* IMAGES */
.logo-top {
  position: absolute;
  top: 40px;
  left: 60px;
  max-width: 233px;
  height: auto;
  z-index: 100;
}
.logo-footer {
  max-width: 323px;
}

.strips-bg-header {
  position: absolute;
  top: 0px;
  right: 0px;
  width: auto;
  height: 100%;
}
.strips-bg-row {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  width: auto;
  height: 100%;
}

.woman-img {
  position: absolute;
  bottom: 0;
  max-width: 100%;
  height: auto;
}

.arrows-img {
  max-width: 62px;
  height: auto;
  animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.sale-img {
  max-width: 127px;
}

@media (min-width: 992px) {
  .img-col {
    padding-right: 48px;
  }
}

@media (max-width: 991px) {
  .card-text-area {
    min-height: 120px;
  }
  #app-section {
    padding-bottom: 80px;
    margin-bottom: 0;
  }
  #app-section::before {
    top: 360px;
    bottom: 0;
  }

  .img-col {
    text-align: center;
    margin-bottom: 60px;
  }
  .icon-col {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .app-title {
    text-align: center;
    font-size: 30px;
  }

  .app-text {
    text-align: center;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  /* GENERAL */
  .btn-red {
    font-size: 18px;
    padding: 6px 24px;
  }

  .masthead-left-col {
    height: auto;
  }
  .masthead-text-area {
    text-align: center;
  }

  #buy {
    padding: 80px 0;
  }

  /* FONTS */
  .title {
    font-size: 18px;
  }

  .subtitle {
    font-size: 12px;
  }

  .section-title {
    font-size: 30px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-text-small {
    font-size: 12px;
  }

  .card-text {
    font-size: 20px;
  }

  .card-obs {
    font-size: 8px;
  }

  .buy-title {
    font-size: 30px;
  }
  .buy-subtitle {
    font-size: 30px;
  }
  .buy-text {
    font-size: 12px;
  }

  /* IMAGES */
  .logo-top {
    position: absolute;
    width: 180px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .logo-footer {
    max-width: 214px;
  }

  .strips-bg-header {
    display: none;
  }

  .strips-bg-row {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: auto;
    height: 100%;
  }

  .woman-img {
    position: relative;
  }

  .arrows-img {
    max-width: 40px;
  }

  .sale-img {
    max-width: 86px;
  }
}
