/* --01 colors
  -primary: #E67E22
  -tint:
  #fdf2e9
  #fae5d3
  -shades:
  #cf711f
  -accents:
  -grey:
  #555
  #333
   #888
  --Border-radius:----
  9px
  --font-weights:----
  default:400
  500
  600
  700 
  --line heights-----
  1(default)
  1.05
  1.6
  --linespacing------
  -0.5px
  0.75px
  --lineheight------
  1(default)
  1.05 small
  1.2 medium
  1.6 (p tag default)
*/

/*********************************************/
/* Genral   components */
/*********************************************/
html {
  font-size: 62.5%;
  /* scroll-behavior: smooth;not working in safari */

}

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

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

.Heading-Primary,
.Secondary-Heading {
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #333;
}

.Heading-Primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}
.Secondary-Heading {
  font-size: 4.4rem;
}

.Tertiary-Heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

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

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

.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-v-alignCent {
  align-items: center;
}

*:focus {
  box-shadow: inset 0 0 0 0.3rem #e67e22;
  padding: 5px;
  outline: none;
}

.Sub-Heading-HW-MS {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: hsla(28, 74%, 47%, 0.503);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.List {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  /* padding: 0; */
}

.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: #e67e22;
}

strong {
  font-weight: 500;
}

.Link:visited,
.Link:link {
  color: #e67e22;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-block;
}
.Link:hover,
.Link:active {
  color: #cf711f;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.Form-btn {
  background-color: #45260a;
  color: #fdf2e9;
  align-self: self-end;
  padding: 1.2rem !important;
}
.Form-btn:hover {
  background-color: white;
  color: #555;
}
/**************** 
Helper classes 
*****************/
.marginri816px {
  margin-right: 1.6rem !important;
}
.marginbot48px {
  margin-bottom: 48px !important;
}
.Center-Text {
  text-align: center;
}
