
:root {
  --lighter-black: #282828;
  --pastel-black: #383e42;
  --main-color: #ACB800;
  --fade-main-color: rgba(174,185,0,0.27);
  --static-main-color: #ACB800;
  --secondary-color: #603eeb;
  --fade-primary-color: rgba(200, 212, 25, 0.19);
  --pastel-white: #d8d8d8;
  --white-two: #fafafa;
  --grey: #f7f7f7;
  --grey-alt: #979797;
  --darker-grey: rgba(222,222,222,0.12);
  --darker-grey-full: #dbdbdb;
  --lighter-grey: #a7a4a4;
  --dawn-black: #383e42;
  --night-grey: #c8c8c8;
  --dawn-grey: #e0e0e0;
  --dawn-grey-darker: #aeaeae;
  --fade-black: rgba(0, 0, 0, 0.5);;
}
 /*! Urbalyon Stylesheet v1.1 | David DUHO d.david@devidia.fr */

html,body {
  width:100%;
  height: auto;
  margin:0;
  padding:0;
  /*commented because add another vertical scrollbar*/
  /*overflow-x: hidden;*/
}

body {
  font-family: 'Muli', sans-serif;
  position: relative;
  margin: 0;
  font-size:14px;
  line-height:24px;
  color: var(--lighter-black);
}

a {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

p {
  font-size: 18px;
}

.theme-color {
  color: var(--main-color);
}
.theme-color-important {
  color: var(--main-color) !important;
}

.lighter-black {
  color: var(--lighter-black);
}

.lighter-grey {
  color: var(--lighter-grey);
}

.text-semi-bold {
  font-weight: 600;
}

.text-bold {
  font-weight: bold;
}





