:root {
  --font-family-main: 'Inter', sans-serif;
  --theme-color1: #fc9452;
  --theme-color2: #018b95;
  --theme-color3: #28bd86;
  --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;
  margin-bottom: 20px;
}

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;
}

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: 50px;
  text-transform: capitalize;
  padding: 0px 16px;
  border-radius: 4px;
}

.btn-primary {
  background-color: var(--theme-color2);
  color: #fff;
}

.btn-secondary {
  background-color: var(--theme-color1);
  color: #fff;
}

.btn-third {
  background-color: var(--theme-color3);
  color: #fff;
}

.title {
  text-align: center;

  h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-transform: capitalize;
  }

  p {
    font-size: 14px;
    max-width: 750px;
    margin: 0 auto;
    color: #555;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  h1{
    font-size: 33px;
    line-height: 40px !important;
  }
  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }
  h6{
    font-size: 17px;
  }
  p{
    font-size: 14px;
    line-height: 24px;
  }
  .btn{
        font-size: 14px;
        line-height: 40px;
        letter-spacing: 1px;
  }
}
@media(max-width:768px){
    .cd-padding{
    padding: 20px;
  }
}