/*Bootstrap*/
/*Fonts*/
/*Animations*/
/*Colors*/

/*by default - bootstap grid. If you want custom grid - uncomment next mixin*/
html {
    font-size: 16px;
}

body {
    background: #fff;
    font-family: "Proxima Nova", Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.25;
}

h1, h2, h3, h4, h5, h6 {
    color: #000;
    font-family: "Proxima Nova", Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 700;
}

h1 {
    font-size: 1.875rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.625rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.375rem;
}

h6 {
    font-size: 1.25rem;
}

p {
    padding: 0;
    margin: 0;
}

hr {
    overflow: hidden;
    height: 1px;
    background: #000;
    border: 0;
    margin: 10px 0;
}

q,
blockquote {
    text-align: center;
    display: block;
    font-style: italic;
}

strong,
b {
    font-weight: 700;
}

a {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a.button {
    text-decoration: none;
}

a.button:hover {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: #000;
}

.content__main ul li {
    position: relative;
    padding-left: 10px;
}

.content__main ul li:before {
    position: absolute;
    content: '';
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

ol {
    list-style-type: decimal;
    list-style-position: inside;
    counter-reset: item;
}

ol li {
    display: block;
    position: relative;
}

ol li:before {
    content: counters(item, ".") ". ";
    counter-increment: item;
    display: inline;
    vertical-align: top;
    font-weight: 700;
}

.upper {
    text-transform: uppercase;
}

.form__item {
    margin-bottom: 20px;
}

.form__item br {
    display: none;
}

.form__submit {
    position: relative;
}

.form__submit .ajax-loader {
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}