/* 

--- 01 TYPOGRAPHY SYSTEM

Font size system (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
      
- Font weights
Defalut: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: 
- Tints: 
- Shades: 
- Accents:
- Greys:


--- 05 SHADOWS

--- 06 BORDER-RADIUS

Default: 
Medium: 

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

:root {
  --primary-color: #e64980;
  --secondary-color: #f06595;
  --tertiary-color: #520720 --accent-color: #fcc8db;
  --second-accent-color: #ffe3e3;
  --background-color: #fff;
  --secondary-background-color: #fff3f8;
  --text-color: #555;
  --secondary-text-color: #666;
  --tertiary-text-color: #333;
  --quaternary-text-color: #fff;
  --five-text-color: #777;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px; */
  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: scroll;
  height: auto;
}

body {
  font-family: 'Montserrat', sans;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
  overflow-y: hidden;
}

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.heading-primary {
  font-size: 6.4rem;
  margin-bottom: 2.4rem;
}

.heading-secondary {
  font-size: 4.8rem;
  margin-bottom: 3.6rem;
}

.heading-tertiary {
  font-size: 3.6rem;
  margin-bottom: 2.4rem;
}

.center {
  align-items: center;
}

.grid {
  display: grid;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
  gap: 3.6rem;
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.grid--6-cols {
  grid-template-columns: repeat(6, 1fr);
  gap: auto;
}

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

.hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

.section-hidden {
  opacity: 0;
  transform: translateY(8rem);
  height: auto;
  overflow: visible;
  display: block;
  will-change: opacity, transform;
}

.color {
  color: var(--primary-color);
}

.bold {
  font-weight: 600;
}

/******************************/
/* MORE TREATMENTS */
/******************************/

.justify-content {
  justify-content: center;
}

.more-treatments {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
  padding-left: 4.8rem;
  padding-right: 4.8rem;
  /* margin-left: 1rem; */
  border-radius: 8px;
  /* box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.1); */
  background-color: var(--secondary-background-color);
  transition: all 0.3s;
}

.more-treatments-text {
  font-size: 2rem;
  padding-top: 3rem;
}

.more-treatments-btn--container-first-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
}
.more-treatments-btn--container-second-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.6rem;
  padding-bottom: 3rem;
}

.more-treatments-btn:link,
.more-treatments-btn:visited {
  text-decoration: none;
  line-height: 1.3;
  color: #555;
  font-weight: 400;
  font-size: 1.6rem;
  background-color: var(--background-color);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.1);
  padding: 2.4rem;
  border-radius: 8px;
  transition:
    transform 0.2s,
    background-color 0.2s;
}

.btn-more:hover {
  transform: translateY(-5%);
  background-color: #fcc8db;
}

/* COLOR ANALYSIS */

.appoint-btn-title {
  margin-top: 7rem;
  font-weight: 600;
  text-align: center;
}

.appoint-btn {
  margin-bottom: 9.6rem;
}

.visit {
  flex-direction: column;
  /* text-align: center; */
}

.aside {
  margin-top: 8rem;
}

.nowrap {
  white-space: nowrap;
}
