/* 

--- 01 TYPOGRAPHY SETTINGS
      Font sizes (px)
        10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
        
      Font weights::after
        
      Line heights
        Default: 1
        
--- 02 COLOR PALETTE
        - Primary: #087f5b 
        
        - Tints: #fff3d2 #807148
        
        - Shades:
        
        - Accents:
        
        - Greys:
        #555
        #333
        - links: #574215
--- 05 SHADOWS
--- 06 BORDER-RADIUS
--- 07 WHITESPACE
        
- Spacing system (px)
  2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128   

*/

/* GENERAL SETTINGS */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* Rem size definition: 1rem = 10px - Use percentage to mantain the possibility to enlarge font in accessibility settings*/
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* GENERAL COMPONENTS */

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  font-size: 1.6rem;
  background-color: #fff;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

/* where x is :is 
:is(article, aside, nav, section) h1 {
  margin-block: 0.83em;
  font-size: 1.5em;
}*/

.margin-right-small {
  margin-right: 1.6rem !important;
}

.margin-bottom-small {
  margin-bottom: 1.6rem !important;
}

.margin-top {
  margin-top: 3.2rem !important;
}

.no-margin {
  margin: 0 !important;
}

.margin-auto {
  margin: auto !important;
}

.padding-top {
  padding-top: 9.6rem !important;
}

.heading-primary,
.heading-secondary,
.heading-tertiar {
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.heading-tertiar {
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.btn:link,
.btn:visited,
.btn:focus,
.btn {
  border-style: none;
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.container,
.container-large {
  max-width: 100rem;
  margin: 0 auto;
  padding: 2.4rem;
}
.container-large {
  max-width: 100rem;
}

.grid {
  display: grid;
  gap: 9.6rem;
}

.flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.8rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.inline-block {
  display: inline-block;
}
