:root {
    /* colors */


    --textColor: #020614;
    --primary: #3F57FF;
    --textPrimary: #7f8eff;
    --primary-light: #d9ddff;
    --baseGray: #373e4f;
    --borderColor: #d1d5f8;
    --white: #fff;
    /* typografy */
    --baseFont: 'Work Sans', sans-serif;
    --secondFont:
}

body {
    font-size: 100%;
    font-size: 16px;
    line-height: 1;
    font-weight: normal;
    font-family: var(--baseFont);
    color: var(--textColor);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.lock {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
    font-weight: 600;
    font-family: var(--baseFont);
    line-height: 120%;
    color: inherit;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 30px;
    line-height: 40px;
}

h3 {
    font-size: 24px;
    line-height: 33px;
}

h4 {
    font-size: 18px;
    line-height: 25px;
}

h5 {
    font-size: 16px;
    line-height: 22px;
}

input,
button,
textarea {
    font-family: var(--baseFont);
}

img {
    vertical-align: middle;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
}

.input,
.textarea {
    padding: 9px 0;
    font-size: 16px;
    width: 100%;
    background-color: transparent;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: var(--textColor);
    border: 1px solid var(--borderColor);
    padding: 15px 20px;
    border-radius: 4px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    color: var(--textColor);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    text-align: center;
    border-radius: 300px;
}

.btn:hover {
    opacity: .8;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-btn:not(:last-child) {
    margin-right: 10px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary-light {
    background-color: rgba(63, 87, 255, .2);
    color: var(--primary);
}

.btn-default {
    background-color: var(--baseGray);
    color: var(--white);
}

.btn-md {
    padding: 12px 30px;
}

.btn-sm {
    padding: 8px 10px;
}

.buttons-group .btn:not(:last-child) {
    margin-right: 10px;
}

.buttons-group .btn {
    margin-bottom: 10px;

}

.base-opacity-6 {
    color: rgba(255, 255, 255, .6);
}

.wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    padding-top: 139px;
}

.content {
    flex: auto;
}

.container {
    max-width: 1230px;
    margin: 0 auto;
    width: 100%;
    padding: 0 15px;
}


.text-center {
    text-align: center;
}