:root {
  --font-family-main: 'Inter', sans-serif;
  --theme-color1: #f59919;
  --theme-color2: #7f5130;
  --theme-color3: #7298ba;
  --font-size-base: 14px;
  --font-size-h1: 52px;
  --font-size-h2: 40px;
  --font-size-h3: 32px;
  --font-size-h4: 26px;
  --font-size-h5: 20px;
  --font-size-h6: 16px;
  --font-weight-bold: 500;
  --font-weight-normal: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: var(--font-family-main);
  font-size: var(--font-size-base);
  overflow-x: hidden;
}

/* -------------------- Typography System -------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  font-weight: var(--font-weight-bold);
  color: #0b1120;
  line-height: 1.3;
}

h1 {
  font-size: 46px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 22px;
}

h6 {
  font-size: 18px;
}

p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

.mb-20{
  margin-bottom: 20px;
}

.section{
  padding: 60px 0;
}

img {
  width: 100%;
}

.pl-20 {
  padding-left: 28px;
}

.btn {
  display: inline-block;
  font-family: 'Inter';
  min-width: 120px;
  text-align: center;
  outline: none;
  border: solid 1px transparent;
  font-size: 14px;
  line-height: 45px;
  text-transform: capitalize;
  border-radius: 5px;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--theme-color1);
  color: #fff;
  margin-bottom: 20px;
}

.btn-secondary {
  background-color: var(--theme-color1);
  color: #fff;
}

.m-0{
  margin: 0;
}

.btn-third {
  background-color: var(--theme-color3);
  color: #fff;
  line-height: 50px;
}

.mb-20{
  margin-bottom: 20px;
}

.text-center{
  text-align: center;
}

.mt-30{
  margin-top: 30px;
}

.all-center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.title {
  text-align: center;

  h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: capitalize;
  }

  p {
    font-size: 14px;
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    margin-bottom: 30px;
  }
}