@font-face {
    font-family: 'Gilroy';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/gilroy-light.woff2') format('woff2'),
         url('../fonts/Gilroy-Light.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/gilroy-regular.woff2') format('woff2'),
         url('../fonts/Gilroy-Regular.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/gilroy-medium.woff2') format('woff2'),
         url('../fonts/Gilroy-Medium.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/gilroy-semibold.woff2') format('woff2'),
         url('../fonts/Gilroy-SemiBold.woff') format('woff');
}
@font-face {
    font-family: 'Gilroy';
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    src: url('../fonts/gilroy-bold.woff2') format('woff2'),
         url('../fonts/Gilroy-Bold.woff') format('woff');
}
:root {
    --background-color-main: rgb(247, 249, 252);
    --background-color-modal: #F2F6FC;
    --background-color-highlight: rgba(148,132,205,0.5);    
    --background-modal-close-hover: #E6F6FF;
    --background-dark-hover: #E0E0E2;
    --background-light-hover: #EDEDF0;
    --border-color: #D5D5D5;
    --line-color: #B3B3B3;
    --color-blue-light: #0091E6;
    --color-blue-normal: #0081CC;
    --color-blue-dark: #0071B3;
    --color-white: #FFFFFF;
}

html {
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
}
*, *::before, ::after {
    box-sizing: inherit;
}
body {
    font-family: 'Gilroy', serif;
    /* background: var(--background-color-light); */
    overflow-x: hidden;
    /* font-family: 'Arial', serif; */
}
a {
    text-decoration: none;    
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
button {
    outline: none;
}
p, div, ol, ul  {    
    line-height: 140%;
    color: #242424;
    margin: 0;
    padding: 0;
}
ul {
    list-style-type: none;
}
h1 {
    font-size: 40px;
    margin: 0;
    line-height: 40px;
}
h2 {
    font-size: 28px;
    line-height: 115%;
}
h3 {
    font-size: 20px;
    line-height: 120%;
}
p, li {
    font-size: 15px;
   /* line-height: 1.6;*/
}
.avatar-container {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0 10px;
}
.avatar-txt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    line-height: 24px;
    font-size: 18px;
    font-weight: 600;
    background: #44546F;
    color: var(--color-white);
    text-transform: uppercase;
    border-radius: 50%;
}
.avatar-btn {
    width: 42px;
    height: 42px;
    padding: 4px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    border: none;
    background-color: transparent;
}
.font-light {
    font-weight: 300;
    margin-top: 10px;
}
.footer-main {
    padding: 24px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: #555555;
}
.header-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 15px 10% 20px 10%;
    border-bottom: 1px solid var(--border-color);
}
.header-right-block {
    display: flex;
    align-items: center;
    margin: 15px 0 10px;
}
.help-link {
    display: block;
    margin-bottom: 10px;
    text-decoration: underline;
    color: #555555;
}
.link-to-apps {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    padding: 10px 12px;
    margin-left: 10px;
    font-weight: 600;
    color: #555555;
    font-family: Arial;
    white-space: nowrap;
}
.logo-main {
    width: 60px;
    height: 60px;
    float: left;
    margin: 5px 15px 5px 0px;
 }
.privacy {
    margin: 40px auto;
    max-width: 1024px;
    width: 80%;
}
.title {
    display: flex;
    padding-top: 10px
}