/* VARIABLES */
:root {
  --color-seafoam-green: #75be97;
  --color-light-blue: #98B7DB;
  --color-black: #010101;
  --color-white: #FFFFFF;
  --color-green: #35a269;

  --font-size-pa-title: 4rem;
  --font-size-section-title: 2.8125rem;
  --font-size-header: 2.75rem;
  --font-size-pa-text: 2rem;
  --font-size-category-name: 1.75rem;
  --font-size-footer: 1.5rem;
  --font-size-body-text: 1.25rem;
  --font-size-card-name: 1.0625rem;
  --font-size-card-description: 1rem;
  
  --line-height-body-text: 1.3;
  
}

@media (max-width: 992px) {
  :root {
    --font-size-section-title: 2rem;
    --font-size-header: 2.25rem;
  }
}

/* GENERAL STYLES */
html, body,
a, a:active, a:visited,
.leads-form__submit-btn {
  color: var(--color-white);
}

html, body {
  width: 100%;
  min-height: 100vh;
  font: normal 400 16px "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-variation-settings:
    "wdth" 100;
  background-color: #000;
  line-height: 1;
}

/* STRUCTURE & BEHAVIOUR */
.flex {
  display: flex;
}

.flex-xy-centered,
.hero__col-right {
  justify-content: center;
}

.flex-xy-centered,
.header,
.header-container,
.personalized-nutrition {
  align-items: center;
}

.block {
  display: block;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1300px) {
  .main,
  .section {
    padding-left: 1.5%;
    padding-right: 1.5%;
  }
}

/* BLOCKS & SINGLE ELEMENTS */
.hero,
.main,
.skinny-shots,
.personalized-nutrition {
  border-top: 2px solid var(--color-seafoam-green);
}

@media (min-width: 1450px) {
  .hero__col-left {
    width: 47%;
    padding-right: 8%;
  }

  .hero__col-right {
    width: 53%;
  }
}

@media (min-width: 993px) {
  .hero__col-left {
    width: 40%;
    padding-right: 4%;
  }
  
  .hero__col-right {
    width: 60%;
  }

  .hero__img {
    max-width: 60%;
  }
}

.hero__col-right {
  flex-direction: column;
}

.wellness-in-a-drip {
  width: 29.75rem;
}

.wellness-in-a-drip,
.leads-form__messages-content p {
  margin-bottom: 2rem;
}

.hero__col-right .body-text:not(:last-of-type) {
  margin-bottom: 1.6rem;
}

.hero__img {
  max-width: 45%;
  margin-left: auto;
}

.btn-square,
.category__name,
.card__name,
.card__price,
.leads-form__messages-button,
.inyecciones-intramusculares__title,
.skinny-shots__title {
  width: fit-content;
}

.btn-square,
.inyecciones-intramusculares__title {
  padding: 1.5rem;
  background-color: var(--color-seafoam-green);
}

.btn-square, .btn-square:active, .btn-square:visited,
.btn-square a, .btn-square a:active, .btn-square a:visited {
  color: #000;
}

/* TEXT FORMATTING AND  TYPOGRAPHY */
strong {
  font-weight: 700;
}

.heavy {
  font-weight: 900;
}

.section-title {
  font-size: var(--font-size-section-title);
}

.body-text:not(.hero__text):not(.category__description):not(.skinny-shots__table-col-left):not(.skinny-shots__table-col-right),
.card__item,
.skinny-shots__description,
.footer,
.leads-form__legend {
  text-align: center;
}

.body-text {
  font-size: var(--font-size-body-text);
  line-height: var(--line-height-body-text);
}

/* HEADER */
.header,
.header-container,
.card__container,
.multiple-category-container,
.skinny-shots__container {
  justify-content: space-between;
}

.header {
  padding: 25px 2.6%;
  background: transparent url(../img/bg-header.png) no-repeat center top;
}

.header-logo {
  width: 6.75rem;
}

.header-container {
  width: 36rem;
}

.header-phone-number,
.header-username {
  font-size: var(--font-size-header);
}

.social-media > li {
  width: 3.1875rem;
  margin: 0 0.5rem;
}

@media (max-width: 1450px) {
  html, body {
    font-size: 14px;
  }
}

@media (max-width: 1200px) {
  html, body {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .header-container {
    width: 29rem;
    padding-top: 5px;
  }

  .social-media > li {
    width: 2.5rem;
    margin: 0 0.25rem;
  }

  .hero {
    flex-direction: column;
    padding: 0 2% 3rem 2%;
  }

  .body-text br {
    display: none;
  }

  .hero__img {
    width: 200px;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --font-size-header: 1.75rem;
  }

  .header {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .header-container {
    flex-direction: column;
    align-items: flex-end;
  }

  .social-media {
    margin: 10px 0;
  }
}