/*

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights


- Line heights


- Letter spacing



#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

/* GRADIENTS
IMAGE-GRADIENTS: 

*/
.touch {
  touch-action: none;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "oswald", sans-serif;
  line-height: 1;
  font-weight: 300;
  color: white;
  overflow-y: hidden;
  overflow-x: hidden;
}

ul {
  list-style: none;
}
a {
  text-decoration: none;
}
p {
  line-height: 1.5;
}
/* section reveal */
.section--hidden {
  opacity: 0;
  transform: translateY(8rem);
}
.section {
  transition: transform 1s, opacity 1s;
}

.container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}
.container--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* GRID */

.grid {
  display: grid;
}
.grid--big-gap {
  row-gap: 9.6rem;
}

.grid-c-gap--b {
  column-gap: 6.4rem;
}
.grid-c-gap--huge {
  column-gap: 9.8rem;
}
.grid-c-gap--s {
  column-gap: 1.2rem;
}

/* .grid:not(:last-child) {
  margin-bottom: 9.6rem;
} */

.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);
}

.grid--center-v {
  align-items: center;
}
.grid--center-h {
  justify-items: center;
}

.margin-bottom--s {
  margin-bottom: 0.8rem !important;
}
.margin-bottom--m {
  margin-bottom: 3.2rem !important;
}
.margin-bottom--b {
  margin-bottom: 6.4rem !important;
}
.margin-bottom--huge {
  margin-bottom: 12.8rem !important;
}

/* HEADER */

.header {
  z-index: 999;
  position: absolute;
  padding: 0 4.8rem;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.main-nav-list {
  display: flex;
  gap: 3.2rem;
}
.main-nav-link,
.header-title {
  font-size: 2.4rem;
  transition: color 0.2s;
}

.heading-primary,
.heading-secondary,
.subtitle {
  font-family: "Playfair Display", sans-serif;
}
.heading-primary {
  font-size: 5.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.heading-secondary {
  text-align: center;
  font-size: 5.2rem;
  font-weight: 600;
}
.subtitle {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  padding: 0 0.6rem;
}
.btn {
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 15px;
  padding: 2.4rem 4.8rem;
  transition: all 0.5s;
}

.cta-btn {
  /*background-image: linear-gradient(to left, #eef3fb, #7b8fb1);*/
  /* background-color: #eef3fb; */
   /*background-image: linear-gradient(to right top, #7b8fb1, #20355a); */

   /*background-image: linear-gradient(to right top, #ecfaf9, #6da5a3); */

  font-size: 2rem;
  letter-spacing: 1.5px;
}

.cta-btn:hover {
  background-image: none;
  /* box-shadow: inset 0 0 0 3px #ffe2cb; */
}

/* FOOTER */
footer .container {
  padding: 9.8rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
  justify-items: center;
  align-content: center;
}
.logo-col,
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.logo-col {
  align-self: start;
}

.nav-title {
  font-size: 3rem;
  margin-bottom: 2.4rem;
  display: inline-block;
}
.nav-desc,
.footer-nav-link {
  font-size: 2.4rem;
}

.title-box {
  margin-bottom: 9.6rem;
}

/* a:focus,
button:focus,
input:focus {
  outline: none;
  box-shadow: 0 0 0.5rem 0.3rem rgb(181, 115, 63, 0.5);
} */

::-webkit-scrollbar {
  width: 13px;
}

::-webkit-scrollbar-track {
}

::-webkit-scrollbar-thumb {
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  cursor: grab;
  cursor: -webkit-grab;
}

/* MOBILE NAV */
.btn-mobile-nav {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-outline,
.close-outline {
  width: 4.8rem;
  height: 4.8rem;
}

.close-outline {
  display: none;
}
