:root {
    --defaultTextColor: #212F4F;
    /* tipografy */
    --fotnFamily:'Albert Sans', sans-serif;
    --defaultFontSize: 16px;
    --defaultLineHeight: 28px;
    --h1Size: 48px;
    --h2Size: 40px;
    --h3Size: 30px;
    --h4Size: 20px;
    --h5Size: 10px;
    --defaultRaduis: 10px;
}

body {
    font-size: 100%;
    font-weight: normal;
    font-family: var(--fotnFamily);
    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: 500;
    font-family: var(--fotnFamily);
    line-height: 110%;
}

h1 {
    font-size: var(--h1Size);
    font-weight: 600;
}

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(--fotnFamily);
    border: 1px solid transparent;
    color: var(--defaultTextColor);
    font-size: var(--defaultFontSize);
    line-height: var(--defaultLineHeight);
    background-color: transparent;
    font-weight: 400;
    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;
}
.btn:hover {
    opacity: .8;
}
.btn--outline {
    border: 1px solid #000;
}
.btn--md {
    padding: 10px;
}
.radius-5 {
    border-radius: var(--defaultRaduis);
}
.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}
.header-fixed {
    padding-top: 69px;
}
.content {
    flex: auto;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}

.pt-70 {
    padding-top: 70px;
}