/* 
 ------ 01 TYPOGRAPHY SYSTEM

 - Font Sizing (px):
 10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

 - Font Weights:
   default: 400
   500
   600
   700

 - Line Heights:
   default: 1
   1.1
   1.05
   1.2

 - Letter Spacing
   -0.5px
   0.75px


------------ 02 COLORS 

   - Main-Orange : #ef5608
   - Main-Blue : #0a1857
   - Grey-Text : #b7b7b9

   - Tints:
   #b6bacd of Main-blue
   #e7e8ee "  "   " "

   #fdeee6 of Main-Orange
   #fcddce "  "   " "
   #f59a6b "  "   " "
   #f48952 "  "   " "


   - Shades:
   #d74d07 of Main-Orange
   #bf4506 "  "   " "

   #09164e of Main-blue
   #081346 " " "

   - Greys:
   #555
   #b7b7b9


----------- 03 SHADOWS

box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.3);

 box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.3);

----------- 04 BORDER-RADIUS

Default: 9px
10px

----------- 05 WHITESPACES

- Spacing System (px):
 2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

 */

/* ************************** GENERL COMPONENTS **************************/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px;
  10px / 16px = 0.625 = 62.5%
  thus, Percentage of user browser font-size setting  */
  font-size: 62.5%;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
}

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(10, 24, 87, 0.5);
}

.container {
  max-width: 130rem;
  margin: 0 auto;
}

.container-sm {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 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-container-v {
  align-items: center;
}

.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom {
  margin-bottom: 4.8rem !important;
}

.margin-top {
  margin-top: 4.8rem !important;
}

.center-text {
  text-align: center !important;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 4.8rem;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  color: #0a1857;
  font-size: 4.2rem;
  line-height: 1.2;
  padding-bottom: 9.6rem;
}

.heading-tertiary {
  color: #0a1857;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #bf4506;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

/* .................... not used anywhere ............. */
.school-v {
  color: #b7b7b9;
}
/* .......................................................... */

.btn-form {
  background-color: #081346;
  color: #fff;
  align-self: end;
  padding: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.3);
  margin-top: 2.4rem;
}

.btn-form:hover {
  background-color: #0a1857;
  color: #ddd;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  transition: all 0.5s;

  /* Only for Button */

  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary:link,
.btn-primary:visited {
  color: #fff;
  background-color: #0a1857;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: #081346;
  color: #ffffffc0;
}

.btn-secondary:link,
.btn-secondary:visited {
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:active {
  box-shadow: inset 0 0 0 3px #ef5608;
}

/* ******************************** */
