/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 
Small: 
Medium: 
Paragraph default: 
Large: 

- Letter spacing


--- 02 COLORS

- Primary: #339af0
- Tints: #d0ebff
#4dabf7 (rgb 77,171,247) (for vectors)
#74c0fc for cta text box
#e7f5ff for cta form box

- Shades: 
- Accents:
- Greys

#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
*/
* {
  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: 63.5%;
  overflow-x: hidden;
  font-family: 'Secular One', sans-serif;

  /* Does NOT work on Safari */
  scroll-behavior: smooth;
}
/*******GLOBAL ELEMENTS*********/

body {
  /* font-family: 'Rubik', sans-serif; */
  /* font-family: 'Secular One', sans-serif; */
  font-family: Calibri, 'Trebuchet MS', sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}

/************* REUSABLE ELEMENTS ************/
.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  margin-bottom: 2.4rem;
}
.heading-secondary {
  font-size: 3.6rem;
  line-height: 1.2;
  /* margin-bottom: 9.6rem; */
}
.heading-tertiary {
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.2;
  /* margin-bottom: 3.2rem; */
}
.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #339af0;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.container {
  /* 1140px */
  /* max-width: 120rem; */
  padding: 0 6.4rem;
  margin: 0 auto;
}

.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  box-shadow: 0px 0px 30px -17px rgb(0 0 0);
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 4.6rem;
}
.flex {
  display: flex;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.ul-no-bullets {
  list-style-type: none; /* Remove bullets */
}
.mx-1 {
  margin-left: 1.2rem;
  margin-right: 1.2rem;
}
.mx-2 {
  margin-left: 2.4rem;
  margin-right: 2.4rem;
}
.mx-3 {
  margin-left: 3.2rem;
  margin-right: 3.2rem;
}
.mx-4 {
  margin-left: 4.8rem;
  margin-right: 4.8rem;
}
.mx-5 {
  margin-left: 6.4rem;
  margin-right: 6.4rem;
}

.ml-1 {
  margin-left: 1.2rem;
}
.ml-2 {
  margin-left: 2.4rem;
}
.ml-3 {
  margin-left: 3.2rem;
}
.ml-4 {
  margin-left: 4.4rem;
}
.ml-5 {
  margin-left: 5.6rem;
}

.my-1 {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.my-2 {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.my-3 {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}
.my-4 {
  margin-top: 4.8rem;
  margin-bottom: 4.8rem;
}
.my-5 {
  margin-top: 6.4rem;
  margin-bottom: 6.4rem;
}

.mb-0 {
  margin-bottom: 0.8rem;
}
.mb-1 {
  margin-bottom: 1.2rem;
}
.mb-2 {
  margin-bottom: 2.4rem;
}
.mb-3 {
  margin-bottom: 3.2rem;
}
.mb-4 {
  margin-bottom: 4.8rem;
}
.mb-5 {
  margin-bottom: 6.4rem;
}
.pos-rel {
  position: relative;
}
.col-gap-none {
  column-gap: 0 !important;
}
a.disabled {
  pointer-events: none;
  cursor: default;
}
ul {
  list-style-type: none;
}
::placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}
.logo-link:link,
.logo-link:visited {
  text-decoration: none;
}
.process-list {
  margin-left: 2.4rem;
}
.portfolio-highlight {
  color: #444;
  font-weight: 600;
}
.alignCenter{
  align-items: center;
}