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

@font-face {
    font-family: 'AvenirHeavy';
    src: url('../fonts/AvenirHeavy.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'AvenirRoman';
    src: url('../fonts/AvenirRoman.ttf');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'AvenirMedium';
    src: url('../fonts/AvenirMedium.ttf');
    font-weight: normal;
    font-style: normal;
}

ul,
ol {
    padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
form,
dd {
    margin: 0;
}

a {
    text-decoration: none;
}

body {
    font-family: AvenirHeavy, sans-serif;
    position: relative;
}

ul,
ol {
    list-style: none;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    border: none;
}

.arrow {
    margin-left: 11px;
}

.layout {
    width: 100%;
}

.layout_colored {
    background: var(--black-blue);
}

.center-container {
    max-width: 1345px;
    margin: 0 auto;
    padding: 0 20px;
}

:root {
    --black: rgb(0, 0, 0);
    --black-blue: rgb(6, 20, 54);
    --dark-blue: rgb(10, 44, 102);
    --blue: rgb(0, 11, 128);
    --light-blue: rgb(1, 94, 235);
    --gray: rgb(149, 149, 153);
    --light-gray: rgb(207, 207, 207);
    --white: rgb(255, 255, 255);
    --pink: rgb(250, 24, 94);
    --orange: rgb(252, 68, 45);
    --light-orange: rgb(254, 105, 2);
    --red: rgb(255, 0, 0);
    --gradient-dark-blue: rgb(3, 11, 29);
    --gradient-blue: rgb(14,39,98);
    --gradient-light-blue: rgb(11,102,153);
}

.privacy-policy ul {
    list-style: disc;
}
.privacy-policy ol {
    list-style: disc;
}

.title-select {
    white-space: nowrap;
}

.errorlist li {
    font-size: 13px;
    color: var(--red);
    font-family: AvenirRoman, sans-serif;
}

.pbm {
    margin: 16px 0;
}

.black-gradient-container:after {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display:inline-block;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(255,255,255,0) 50%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(255,255,255,0) 50%);
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(255,255,255,0) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}