/* ********* Common css ************ */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}


:root {
  --dark: #000;
  --white: #fff;
  --yellow: #f9e363;
  --red: #d13e48;
  --montserrat: 'Montserrat', sans-serif;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

p {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  color: var(--dark);
}


ul,
li {
  text-decoration: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: var(--dark);
}

/* common_font_sizes */
h1 {
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
}

h2 {
  font-size: 45px;
  line-height: 50px;
  font-weight: 700;
}

body,
html {
  scroll-behavior: smooth;
}

body {
  /* font-family: 'Montserrat'; */
  font-family: var(--montserrat);
  font-size: 16px;
  line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: var(--montserrat);
  text-transform: capitalize;
}