/* 
--- 01 TYPOGRAPHY SYSTEM

FONT STYLE SYSTEM(PX)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98 /

--Font weight:
500
600
700
--Line-Height:
1.2
1.5
1.8


--Letter spacing:


--- 02 COLORS

Primary :#3b5bdb

Tints:
#d8def8
Shades:
#3552c5
Accents:

Gerys:
#333

--- 03 SHADOWS
0 2.4rem 3.2rem rgba(0, 0, 0, 0.06);

--- 04 BORDER-RADIUS
Defaults: 9px
11px

--- 05 WHITESPACE 


--- 06 SPACING SYSTEM
2 / 4 / 8 / 16 / 24 / 32 / 48 /64 / 80 / 96 /128
 */

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #555;
  overflow-x: hidden;
}

/* ********************************************************/
/* GENERAL REUSEABLE COMPONENTS */
/* ********************************************************/

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

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}

.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);
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 600;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 4.8rem;
  text-transform: uppercase;
}

.heading-secondary:hover {
  animation: moveInLeft 1s ease-out;
}

.heading-tertiary {
  font-size: 3.6rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  color: #3b5bdb;
}

.btn:link,
.btn:visited {
  text-decoration: none;
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;

  border-radius: 9px;
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #3b5bdb;
  color: #fff;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--full:hover {
  background-color: #3552c5;
  transform: translateY(-3px);
  box-shadow: 0 2.4rem 3.2rem rgba(0, 0, 0, 0.06);
}

.btn--full:active {
  transform: translateY(-1px);
  box-shadow: 0 2.4rem 3.2rem rgba(0, 0, 0, 0.06);
}

.btn--outline:hover,
.btn--outline:active {
  background-color: #d8def8;
  box-shadow: inset 0 0 0 3px #fff;
}

.margin-right-sm {
  margin-right: 1.6rem;
}

.center-text {
  text-align: center;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }

  80% {
    transform: translate(10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  80% {
    transform: translate(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
