@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
/*
--- 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: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #2f80ed
- Tints:
#EAF3FF //#fdf2e9  50
#ADD0FF //#fae5d3  100
#70ADFF //#eb984e  200
#0F51A9            300
#002B65            400


- Shades: 
var(--primary-200)
#45260a

- 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: 6px
Medium: 36px

--- 07 WHITESPACE

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

:root {
  /* Cargo Doorz CSS variables */
  --primary-color: #2f80ed;
  --primary-50: #eaf3ff;
  --primary-100: #add0ff;
  --primary-200: #70adff;
  --primary-300: #0f51a9;
  --primary-400: #002b65;

  --grey-900: #041b19;
  --grey-800: #4f4f4f;
  --grey-700: #636363;
  --grey-600: #787878;
  --grey-500: #8c8c8c;
  --grey-400: #a1a1a1;
  --grey-300: #b5b5b5;
  --grey-200: #c9c9c9;
  --grey-100: #dedede;
  --grey-50: #f2f2f2;

  --success-50: #e2f9eb;
  --success-100: #a3ebc2;
  --success-200: #64dd98;
  --success-300: #b83838;

  --warning-50: #fcf1cf;
  --warning-100: #f8e2a0;
  --warning-200: #f4d167;
  --warning-300: #f2c94c;

  --danger-50: #ffefef;
  --danger-100: #ffa7a7;
  --danger-200: #eb5757;
  --danger-300: #b83838;

  --bg-offwhite: #fafafa;
  --white: #fff;

  --border-radius: 6px;

  --border-radius-medium: 36px;

  /* Widescreen */
  --screen-wide: 1281px;

  /* Laptop / Desktop */
  --screen-wide-max: 1280px;
  --screen-wide-min: 1025px;

  /* Ipad / Tablets */
  --screen-mid-max: 1024px;
  --screen-mid-min: 768px;

  /* Mobile Landscape / Smaller tablets */
  --screen-low-max: 767px;
  --screen-low-min: 461px;

  /* Most Mobile */
  --screen-mobile-max: 480px;

  --screen-landscape: landscape;
  --screen-portrait: portrait;
}

* {
  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;

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

body {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 157.143% */
  letter-spacing: -0.084px;
  font-weight: 400;
  color: #555;

  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #252626;
  margin-bottom: 20px;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.019em;
  text-align: left;
}
p {
  margin-bottom: 20px;
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}
.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;

  /* margin-bottom: 9.6rem; */
}

/* .grid:last-child {
  margin-bottom: 0;
} */

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

.block {
  display: block;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}

.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-initial {
  flex: 0 1 auto;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

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

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.cursor-pointer {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

.section-vertical-scroll {
  overflow-y: auto;
}

.mt-12px {
  margin-top: 12px;
}

.mt-5 {
  margin-top: 1rem;
}

.mb-5 {
  margin-bottom: 1rem;
}

.mb-10 {
  margin-bottom: 2rem;
}

.mb-15 {
  margin-bottom: 3rem;
}

.mb-20 {
  margin-bottom: 4rem;
}

.mb-36 {
  margin-bottom: 9rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-100px {
  padding-bottom: 100px;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  display: block;
  color: var(--grey-900, #252626);
  font-feature-settings: "clig" off, "liga" off;
  font-family: Inter;
  line-height: 40px; /* 166.667% */
  letter-spacing: -0.456px;
  /* color: #45260a; */
  /* color: #343a40; */
  letter-spacing: -0.5px;
}

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

.heading-footnote,
.subheading {
  display: block;
  color: var(--grey-800, #525454);
  text-align: center;
}

.heading-footnote {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.006em;
  text-align: left;
  margin-bottom: 20px;
  display: block;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #2f80ed;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: var(--primary-200);
}

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

.btn--outline:hover,
.btn--outline:active {
  background-color: #fdf2e9;

  /* border: 3px solid #fff; */

  /* Trick to add border inside */
  box-shadow: inset 0 0 0 3px #fff;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #2f80ed;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: var(--primary-200);
  border-bottom: 1px solid transparent;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #2f80ed;
}

*:focus {
  outline: none;
  /* outline: 4px dotted #2f80ed; */
  /* outline-offset: 8px; */
  /* box-shadow: 0 0 0 0.8rem rgba(230, 125, 34, 0.5); */
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

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

strong {
  font-weight: 500;
}
.bg-primary {
  background: var(--primary-color, #2f80ed) !important;
  color: var(--primary-50, #eaf3ff) !important;
}


ol{
  margin-bottom: 25px;
}
ol li {
  margin-bottom: 10px;
  margin-left: 15px;
  padding-left: 10px;
}