/* variables */
:root {
  --main-font-family: 'Euclid Circular B';
  --main-bg-color: #F0EBE4;
  --main-text-color: #1F1F1F;
  --primary-btn-bg: #E94D37;
  --theme-orange: #1C5350;
  --theme-seconday-blue: #0F9FFF;
  --primary-btn-text: #fff;
  --secondary-btn-bg: #1F1F1F;
  --secondary-btn-text: #fff;
  --disabled-btn-bg: gray;
  --disabled-btn-border: gray;
  --heading-color: #232320; 
  --paragraph-color: #232320
  --font-regular: 400;
  --font-semibold: 500;
  --font-bold: 700;
  --primaryColor: #232320;
  --font-size-base: 0.875rem;
  --font-size-8: 0.5rem;
  --font-size-9: 0.5625rem;
  --font-size-10: 0.625rem;
  --font-size-11: 0.6875rem;
  --font-size-12: 0.75rem;
  --font-size-13: 0.8125rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-17: 1.0625rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-21: 1.3125rem;
  --font-size-23: 1.4375rem;
  --font-size-24: 1.5rem;
}

/* start style  */
* {
  box-sizing: border-box;
} 

html,
body {
  margin: 0;
  font-family: var(--main-font-family) !important;
  color: var(--main-text-color);
  font-size: var(--font-size-base);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: var(--font-semibold);
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: var(--font-size-24);
}

h2 {
  font-size: var(--font-size-21);
}

h3 {
  font-size: var(--font-size-20);
}

h4 {
  font-size: var(--font-size-18);
}

h5 {
  font-size: var(--font-size-16);
}

h6 {
  font-size: var(--font-size-14);
}

a {
  color: var(--primaryColor);
  text-decoration: none;
}

p {
  color: var(--paragraph-color);
  font-size: var(--font-size-base);
  margin-top: 0;
}


