//@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600&display=swap');
@import "variables.styl"

:root {
  --primary-color: #470096;
  --primary-hover-color: #3f0f74;
}

*{
  box-sizing border-box
}
body,
html {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  min-height: 100vh;
  width: 100%;
  box-sizing border-box
}

body {
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: font-color;
  overflow-x: hidden;
  max-width 1920px;
  margin 0 auto;
}

h1, h2, h3, h4, h5, h6, p, ul, span, li, input, button {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  box-sizing: border-box;
  white-space: inherit;
}

ul, a, button,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans', sans-serif;
  color: heading-color;
  font-weight: inherit;
}

p {
  line-height: 1.8;
  font-size: 1.1em;
  font-weight: 400;
  color: #112211;
}


h1 {
  font-size: 2.8em;
  line-height: 1.2;
  font-weight: 600;
}

h2 {
  font-size: 2em;
  line-height: 1.3;
}

h3 {
  font-size: 1.5em;
  line-height: 1.4;
}

h4 {
  font-size: 1.25em;
  line-height: 1.4;
}

h5 {
  font-size: 1.1em;
  line-height: 1.5;
  font-weight: 600;
}

h6 {
  font-size: .95em;
  letter-spacing: 1px;
  line-height: 1.5;
}


strong {
  font-weight: 700;
}

b {
  font-weight: 700;
  line-height: 1;
}

img {
  width: 100%;
  height: auto;
  object-fit cover
}

li {
  list-style: none;
  display: inline-block;
  font-size: 1em;
  line-height: 1.8;
}

i, span {
  display: inline-block;
}

b.max-bold {
  font-weight: 700;
}
input{
  transition all .15s
}
button,
textarea,
input:not([type='checkbox']){
  outline: 0;
  border: none;
  height: btn-height;
  line-height: btn-height - 2px;
  border-radius: border-radius;
}
textarea,
input:not([type='checkbox']) {
  border: 1px solid #ddd;
}

input[type='radio'],
input[type='checkbox']{
  height: auto;
  line-height: 1;
}
textarea {
  max-width: 100%;
  min-width: 100%;
  line-height: 1.6;
  min-height: 120px;
  padding: 14px 15px;
  vertical-align: top;
}

.ajax-btn:active,
button:active,
textarea:focus,
textarea:active,
input:focus,
input:active {
  background: rgba(0,0,0,.02);
  box-shadow 0 0 3px 2px primary-color
}

button {
  margin-bottom: 0;
  width: auto;
  background: none;
  cursor: pointer;
}

a, button {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: all .2s ease-in-out;
  transition: all .1s ease-in-out;
}

a:focus,
a:active,
a:hover,
button:focus,
button:active,
button:hover {
  text-decoration: none;
}

label
  display inline-block
  user-select none

::placeholder {
  color: #aaa;
  font-size: .9em;
  letter-spacing: 1px;
}

:-ms-input-placeholder {
  color: #aaa;
  font-size: .9em;
  letter-spacing: 1px;
}

:-ms-input-placeholder {
  color: #aaa;
  font-size: .9em;
  letter-spacing: 1px;
}


/* RESPONSIVE */
@media only screen and (max-width: 576px)
  body
    font-size 14px

  h1
    font-size 2.7em

  h2
    font-size 1.8em

  h3
    font-size 1.3em

  h4
    font-size 1.1em

  h5
    font-size 1em



