:root {
  --blue: #5914e6!important;
  --darkblue: #350d9b;
  --black: #000;
  --lightgrey: #f6f6f6;
  --grey: #525252;
  --white: #fff;
  --border-radius: 20px;
  --border-radius-el: 5px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-text);
  color: var(--text-main);
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.bg_blue {
    background: var(--blue);
    color: var(--white);
}

.bg_darkblue {
    background: var(--darkblue);
    color: var(--white);
}

.bg_grey {
    background: var(--lightgrey);
}

h2,
.h2 {
    font-size: 36px!important;
    font-weight: 600!important;
    line-height: 120%!important;
}