:root {
    --defaultTextColor: #000;
    /* tipografy */
    --fotnFamilyInter: 'Inter', sans-serif;
    --fotnFamilyRaleway: 'Raleway', sans-serif;
    --defaultFontSize: 16px;
    --defaultLineHeight: 26px;

}

body {
    font-size: 100%;
    font-weight: normal;
    font-family: var(--fotnFamilyInter);
    font-weight: 400;
    font-size: var(--defaultFontSize);
    line-height: var(--defaultLineHeight);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color: var(--defaultTextColor);
}

body.lock {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: bold;
    font-family: var(--fotnFamily);
    line-height: 120%;
}

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

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

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

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

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

.input,
.textarea {
    padding: 10px 0;
    font-size:  var(--defaultFontSize);
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid #BABDDB;
}
input,
button,
textarea {
    font-family: var(--fotnFamily);
}
.btn {
    font-family: var(--fotnFamilyRaleway);
    border: 1.5px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    /* border-radius: 300px; */
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover {
    opacity: .8;
}
.btn--outline {
    border: 1px solid #000;
}
.btn--md {
    padding: 8px 23px;
}
.btn--lg {
    font-size: 18px;
    line-height: 29px;
    padding: 9px 24px; 
}
.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding-top: 86px;
}
.header-fixed {
    padding-top: 69px;
}
.content {
    flex: auto;
}
.container {
    max-width: 1230px;
    width: 100%;
    margin: 0 auto;
    width: 100%;
}
.btn--primary {
    /* background-color: #7C4DFF; */
    background: linear-gradient(92.31deg, #8C49F7 0%, #6C53FF 100%);
    border-color: #7C4DFF;
    color: #fff;
}
.btn--border {
    background-color: #fff;
    border-color: #7C4DFF;
    color: #7C4DFF;
}