@font-face {
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: normal;
	src: local('Roboto Condensed'),
		url('https://rspectr.com/RobotoCondensed-Regular.woff') format('woff'),
		url('https://rspectr.com/RobotoCondensed-Regular.ttf') format('truetype'),
		url('https://rspectr.com/RobotoCondensed-Regular.woff2') format('woff2'),
		url('https://rspectr.com/RobotoCondensed-Regular.eot') format('embedded-opentype')
}
@font-face {
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 300;
	src: local('Roboto Condensed'),
		url('https://rspectr.com/RobotoCondensed-Light.woff') format('woff'),
		url('https://rspectr.com/RobotoCondensed-Light.ttf') format('truetype'),
		url('https://rspectr.com/RobotoCondensed-Light.woff2') format('woff2'),
		url('https://rspectr.com/RobotoCondensed-Light.eot') format('embedded-opentype')
}
@font-face {
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 700;
	src: local('Roboto Condensed'),
		url('https://rspectr.com/RobotoCondensed-Bold.woff') format('woff'),
		url('https://rspectr.com/RobotoCondensed-Bold.ttf') format('truetype'),
		url('https://rspectr.com/RobotoCondensed-Bold.woff2') format('woff2'),
		url('https://rspectr.com/RobotoCondensed-Bold.eot') format('embedded-opentype')
}
@font-face {
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: bold;
	src: local('Roboto Condensed'),
		url('https://rspectr.com/RobotoCondensed-Bold.woff') format('woff'),
		url('https://rspectr.com/RobotoCondensed-Bold.ttf') format('truetype'),
		url('https://rspectr.com/RobotoCondensed-Bold.woff2') format('woff2'),
		url('https://rspectr.com/RobotoCondensed-Bold.eot') format('embedded-opentype')
}
@font-face {
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: normal;
	src: local('Roboto Condensed'),
		url('https://rspectr.com/RobotoCondensed-Italic.woff') format('woff'),
		url('https://rspectr.com/RobotoCondensed-Italic.ttf') format('truetype'),
		url('https://rspectr.com/RobotoCondensed-Italic.woff2') format('woff2'),
		url('https://rspectr.com/RobotoCondensed-Italic.eot') format('embedded-opentype')
}
@font-face {
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 300;
	src: local('Roboto Condensed'),
		url('https://rspectr.com/RobotoCondensed-Italic.woff') format('woff'),
		url('https://rspectr.com/RobotoCondensed-Italic.ttf') format('truetype'),
		url('https://rspectr.com/RobotoCondensed-Italic.woff2') format('woff2'),
		url('https://rspectr.com/RobotoCondensed-Italic.eot') format('embedded-opentype')
}
.custom-select {
  position: relative;
}
.custom-select__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  font-family: inherit;
  white-space: nowrap;
  text-align: left;
  text-overflow: ellipsis;
  cursor: pointer;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select__option-wrap {
  position: relative;
}
.custom-select__input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  border-width: 1px 0;
  border-style: solid;
  border-radius: 0;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.custom-select__dropdown {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  top: 100%;
  left: 0;
}
/*.form__select .custom-select--dropup .custom-select__dropdown {
  top: auto;
  bottom: 100%;
}*/
.custom-select__option {
  position: relative;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  color: #212121;
  line-height: 1.5;
}
.custom-select__option:focus {
  outline: none;
}
.custom-select__option:focus,
.custom-select__option:hover {
  background-color: #f9f9f9;
}
.custom-select__option--value {
  padding-right: 1.875rem;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 0.25rem;
}
.custom-select__option--value:after {
  position: absolute;
  box-sizing: border-box;
  width: 0;
  height: 0;
  top: 50%;
  right: 0.75rem;
  border-color: currentcolor transparent;
  border-style: solid;
  border-width: 0.3rem 0.3rem 0;
  transform: translateY(-50%);
  content: "";
}
.custom-select--active .custom-select__option--value:after {
  transform: translateY(-50%) rotate(-180deg);
}
.custom-select--active .custom-select__option--value {
  border-bottom-color: transparent;
  border-radius: 0.25rem 0.25rem 0 0;
}
.custom-select--active .custom-select__option--value:focus,
.custom-select--active .custom-select__option--value:hover {
  background-color: #fff;
}
.custom-select--dropup.custom-select--active .custom-select__option--value {
  border-top-color: transparent;
  border-bottom-color: #e6e6e6;
  border-radius: 0 0 0.25rem 0.25rem;
}
.custom-select__option--selected {
  background-color: #fcfcfc;
}
.custom-select__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}
.custom-select__option[disabled]:focus,
.custom-select__option[disabled]:hover {
  background-color: transparent;
}
.custom-select__option-wrap {
  overflow-y: auto;
  max-height: 11.25rem;
}
.custom-select__option-wrap::-webkit-scrollbar {
  width: 16px;
}
.custom-select__option-wrap::-webkit-scrollbar-thumb {
  background-color: #e6e6e6;
  background-clip: padding-box;
  border-color: transparent;
  border-style: solid;
  border-width: 0 4px;
}
.custom-select__input {
  position: relative;
  z-index: 1;
  height: 2.25rem;
  margin-top: -1px;
  padding: 0 0.75rem;
  border-color: #e6e6e6;
  transform: translateY(1px);
  font-size: 1rem;
  color: #212121;
}
.custom-select__input:focus {
  outline: none;
}
.custom-select--dropup .custom-select__input {
  border-top-width: 0;
  margin-top: 0;
  transform: translateY(0);
}
.custom-select__dropdown {
  overflow: hidden;
  z-index: 1;
  top: calc(100% - 1px);
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-top: 0 solid #e6e6e6;
  border-radius: 0 0 0.25rem 0.25rem;
}
/*.form__select .custom-select--dropup .custom-select__dropdown {
  top: auto;
  bottom: calc(100% - 1px);
  border-width: 1px 1px 0;
  border-radius: 0.25rem 0.25rem 0 0;
}*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
[hidden] {
  display: none;
}
body {
  line-height: 1;
}
menu,
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.svg-search {
  width: 25px;
  height: 25px;
}
.svg-hamburger {
  width: 27px;
  height: 19px;
}
.svg-close {
  width: 21px;
  height: 21px;
}
.svg-facebook {
  width: 14px;
  height: 28px;
}
.svg-facebook_small {
  width: 8px;
  height: 16px;
}
.svg-youtube {
  width: 28px;
  height: 20px;
}
.svg-telegram {
  width: 26px;
  height: 23px;
}
.svg-telegram_small {
  width: 15px;
  height: 13px;
}
.svg-twitter {
  width: 27px;
  height: 22px;
}
.svg-twitter_small {
  width: 15px;
  height: 13px;
}
.svg-arrow-left,
.svg-arrow-right {
  width: 22px;
  height: 16px;
}
.svg-arrow-down {
  width: 13px;
  height: 10px;
}
.svg-marker {
  width: 18px;
  height: 20px;
}
.svg-email,
.svg-phone {
  width: 20px;
  height: 16px;
}
.svg-vk_small {
  width: 18px;
  height: 10px;
}
.svg-size-minus {
  width: 49px;
  height: 21px;
}
.svg-size-plus {
  width: 62px;
  height: 33px;
}
body {
  font-family: 'Roboto Condensed', sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
.main-container {
  max-width: 1150px;
  /*padding: 0 15px;*/
	padding: 0px;
  margin: 0 auto;
}
.main-relative {
  position: relative;
}
.main-title {
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 575px) {
  .main-title {
    font-size: 32px;
    line-height: 37px;
  }
}
.main-title-normal {
  font-size: 24px;
  line-height: 28px;
  color: #212121;
}
@media (max-width: 575px) {
  .main-title-normal {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
  }
}
.main-btn-arrow {
  font-size: 20px;
  line-height: 23px;
  color: #1c75bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-btn-arrow svg {
  fill: #1c75bc;
}
.main-btn-arrow:hover {
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-btn-arrow span {
  padding-right: 10px;
}
.main-btn {
  display: inline-block;
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  padding: 16px 42px;
  background: #1c75bc;
  text-decoration: none;
  border: 0;
  outline: 0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-btn_small {
  padding: 2px 10px;
  /*padding: 2px 16px;*/
  height: 39px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .main-btn_small {
    font-size: 12px;
    line-height: 14px;
    height: 32px;
    padding: 0 8px;
  }
}
.main-btn:hover {
  background: #18629d;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-btn-color {
  padding: 8px 16px;
  height: 39px;
  background: #fc0;
  text-decoration: none;
  font-size: 20px;
  line-height: 23px;
  text-transform: capitalize;
  color: #333;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .main-btn-color {
    font-size: 12px;
    line-height: 14px;
    height: 32px;
    padding: 0 8px;
  }
}
.main-title-medium {
  font-weight: 700;
  font-size: 32px;
  line-height: 37px;
  text-align: center;
  color: #000;
}
@media (max-width: 575px) {
  .main-title-medium {
    font-size: 28px;
    line-height: 33px;
  }
}
.main-bg {
  background: #f8f9fa;
}
.main-color {
  color: #1c75bc;
  text-decoration: none;
}
.main-bold {
  font-weight: 700;
}
.main-uppercase {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .header {
    padding-bottom: 50px;
  }
}
.header__actions {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 4;
}
@media (max-width: 767px) {
  .header__actions {
    /*background: #343a40;*/
	background: #fff;
  }
}
.header__actions-inner {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .header__actions-inner {
    height: 60px;
  }
}
.header__actions-logo-mobile {
  display: none;
}
@media (max-width: 767px) {
  .header__actions-logo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .header__actions-logo-mobile {
    display: block;
  }
  .header__actions-logo-pc {
    display: none;
  }
}
.header__actions-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header__actions-list-item {
  margin-right: 110px;
}
@media (max-width: 1050px) {
  .header__actions-list-item {
    margin-right: 50px;
  }
}
@media (max-width: 900px) {
  .header__actions-list-item {
    margin-right: 25px;
  }
}
.header__actions-list-item:last-child {
  margin-right: 0;
}
.header__actions-list-link {
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #212121;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__actions-list-link:hover,
.header__actions-list-link_active {
  color: #1c75bc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__actions-form {
  display: none;
  width: 100%;
  max-width: 830px;
  margin-left: 95px;
  margin-right: 34px;
}
@media (max-width: 767px) {
  .header__actions-form {
    margin: 0;
    width: 100vw;
    position: fixed;
    top: 60px;
    left: 0;
  }
}
.header__actions-form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 1px solid #c4c4c4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 20px;
  height: 52px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .header__actions-form-box {
    padding: 0 14px;
  }
}
.header__actions-form-query {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header__actions-form-input {
  width: 100%;
  outline: 0;
  border: 0;
  font-size: 16px;
}
.header__actions-form-input ::-webkit-input-placeholder {
  color: #c4c4c4;
  opacity: 1;
}
.header__actions-form-input ::-moz-placeholder {
  color: #c4c4c4;
  opacity: 1;
}
.header__actions-form-input :-ms-input-placeholder {
  opacity: 1;
}
.header__actions-form-input ::-ms-input-placeholder {
  opacity: 1;
}
.header__actions-form-input ::placeholder {
  color: #c4c4c4;
  opacity: 1;
}
.header__actions-form-input :-ms-input-placeholder {
  color: #c4c4c4;
}
.header__actions-form-input ::-ms-input-placeholder {
  color: #c4c4c4;
}
.header__actions-form-select {
  margin: 0 25px;
  padding-right: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .header__actions-form-select {
    padding-right: 0;
    margin: 0 0 0 10px;
  }
}
.header__actions-form-select:after {
  position: absolute;
  content: "";
  width: 1px;
  right: 0;
  top: -7px;
  height: 32px;
  background: #212121;
}
@media (max-width: 767px) {
  .header__actions-form-select:after {
    display: none;
  }
}
.header__actions-form-select .custom-select__dropdown {
  top: calc(100% + 8px);
  width: 270px;
  border: 0;
  background: rgba(52, 58, 64, 0.85);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  right: 0;
  left: auto;
}
@media (max-width: 767px) {
  .header__actions-form-select .custom-select__dropdown {
    top: calc(100% + 15px);
  }
}
.header__actions-form-select .custom-select__option {
  font-size: 16px;
  line-height: 19px;
  color: #fff;
  padding: 12px 20px;
}
.header__actions-form-select .custom-select__option:first-child {
  padding: 20px 20px 12px;
}
.header__actions-form-select .custom-select__option:last-child {
  padding: 12px 20px 20px;
}
.header__actions-form-select .custom-select__option:hover {
  background: transparent;
}
.header__actions-form-select .custom-select__option--value {
  background: transparent;
  border: 0;
  font-size: 16px;
  color: #1c75bc;
  padding: 0 40px 0 0 !important;
}
.header__actions-form-close {
  cursor: pointer;
}
@media (max-width: 767px) {
  .header__actions-form-close {
    display: none;
  }
}
.header__actions-form-close svg {
  fill: #1c75bc;
  display: block;
  width: 21px;
  height: 21px;
}
.header__actions-menu {
  margin-left: 110px;
}
@media (max-width: 1050px) {
  .header__actions-menu {
    margin-left: 50px;
  }
}
@media (max-width: 900px) {
  .header__actions-menu {
    margin-left: 25px;
  }
}
@media (max-width: 767px) {
  .header__actions-menu {
    display: none;
  }
}
.header__actions-search {
  margin-left: auto;
  margin-right: 60px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header__actions-search {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-right: 0;
    margin-left: 0;
    padding-right: 20px;
    border-right: 1px solid #828282;
  }
}
.header__actions-search svg {
  fill: #212121;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
@media (max-width: 767px) {
  .header__actions-search svg {
    fill: #fff;
    width: 22px;
    height: 22px;
  }
}
.header__actions-search:hover svg {
  fill: #1c75bc;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.header__actions-search__close {
  display: none;
}
.header__actions-hamburger {
  cursor: pointer;
  width: 27px;
}
@media (max-width: 767px) {
  .header__actions-hamburger {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 24px;
    padding-left: 20px;
    border-left: 1px solid #828282;
  }
}
.header__actions-hamburger svg {
  fill: #212121;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
@media (max-width: 767px) {
  .header__actions-hamburger svg {
    /*fill: #fff;*/
	  fill: #6a6a6a;
    width: 24px 17px;
  }
}
.header__actions-hamburger:hover svg {
  fill: #1c75bc;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.header__actions-hamburger .svg-close {
  display: none;
  fill: #fc0;
}
.header__actions-dropdown {
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  top: 100px;
  right: 0;
  padding: 20px 44px 20px 0;
  background: rgba(52, 58, 64, 0.85);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  text-align: right;
  min-width: 360px;
  overflow: auto;
  max-height: calc(100vh - 100px);
}
@media (max-width: 767px) {
  .header__actions-dropdown {
    top: 60px;
    right: -15px;
    min-width: calc(100% - 27px);
    background: #fff;
    padding: 15px 28px 18px;
    max-height: calc(100vh - 60px);
  }
}
.header__actions-dropdown-list-item {
  padding: 14px 0;
}
@media (max-width: 767px) {
  .header__actions-dropdown-list-item {
    padding: 10px 0;
  }
}
.header__actions-dropdown-list-item_mobile {
  display: none;
}
@media (max-width: 767px) {
  .header__actions-dropdown-list-item_mobile {
    display: block;
    padding: 13px 0;
  }
}
.header__actions-dropdown-list-item_separator {
  height: 1px;
  background: #828282;
  opacity: 0.6;
  padding: 0;
  margin: 19px 0 22px;
}
.header__actions-dropdown-list-link {
  font-size: 20px;
  line-height: 23px;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
}
@media (max-width: 767px) {
  .header__actions-dropdown-list-link {
    font-size: 18px;
    line-height: 21px;
    color: #343a40;
  }
}
.header__actions-dropdown-list-link_mobile {
  font-size: 20px;
  line-height: 23px;
  text-transform: uppercase;
  color: #212121;
}
.header__actions-dropdown-list-link:hover,
.header__actions-dropdown-list-link_active {
  color: #fc0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 767px) {
  .header__actions-dropdown-list-link:hover,
  .header__actions-dropdown-list-link_active {
    color: #1c75bc;
  }
}
.header__nav {
  margin-top: 100px;
  background: #343a40;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__nav-list-link {
  font-size: 18px;
  line-height: 21px;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
}
.header__nav-list-link:hover,
.header__nav-list-link_active {
  color: #fc0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.banner {
  margin: 55px 0;
}
@media (max-width: 575px) {
  .banner {
    margin: 35px 0;
  }
}
.banner__image img {
  display: block;
}
.items {
  padding: 40px 0;
}
@media (max-width: 575px) {
  .items {
    padding: 35px 0;
  }
}
.items_nospace {
  padding: 0;
}
.items_bg {
  background: #f8f9fa;
}
.items__title {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .items__title {
    margin-bottom: 20px;
  }
}
.items__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 767px) {
  .items__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .items__list {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.items__list_duo {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 575px) {
  .items__list_duo {
    grid-template-columns: 1fr;
  }
}
.item__image {
  position: relative;
}
.item__image img {
  display: block;
  width: 100%;
}
.item__type {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.item__type-name {
  text-decoration: none;
  font-size: 15px;
  line-height: 18px;
  color: #333;
  margin-left: 8px;
  display: block;
  padding: 4px 8px;
  background: #fc0;
}
.item__type-name:first-child {
  margin-left: 0;
}
@media (max-width: 575px) {
  .item__type-name {
    font-size: 13px;
    line-height: 15px;
  }
}
.item__title {
  margin-top: 16px;
}
@media (max-width: 575px) {
  .item__title {
    margin-top: 12px;
  }
}
.item__title-link {
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 575px) {
  .item__title-link {
    font-size: 16px;
    line-height: 19px;
  }
}
.item__title-link_bold {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}
@media (max-width: 575px) {
  .item__title-link_bold {
    font-size: 20px;
    line-height: 23px;
  }
}
.item__subtitle,
.item__title-link_small {
  font-size: 20px;
  line-height: 23px;
}
.item__subtitle {
  color: #212121;
  margin-top: 4px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.item__subtitle_small,
.item__text {
  font-size: 16px;
  line-height: 20px;
}
.item__text {
  margin-top: 12px;
  font-weight: 300;
  color: #212121;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.item__text_big {
	font-size:20px;
	margin-top: 12px;
  
  color: #212121;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
	    line-height: 23px;
}
.item__text_bold {
	font-weight: 700;
}
.item__text_normal {
  font-weight: 400;
}
@media (max-width: 575px) {
  .item__text {
    font-size: 14px;
    line-height: 16px;
    margin-top: 8px;
  }
}
.item__text p {
  margin-top: 30px;
}
.item__text p:first-child {
  margin-top: 0;
}
/*.item:hover .item__subtitle,
.item:hover .item__title-link {
  color: #1c75bc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}*/
.item .item__subtitle:hover,
.item .item__title-link:hover {
  color: #1c75bc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.elements {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .elements {
    margin-bottom: 35px;
  }
}
.elements__box-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #212121;
  margin-bottom: 30px;
}
.elements__box-morebtn {
  margin-top: 40px;
}
.elements__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .elements__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.elements__item {
  max-width: 620px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .elements__item {
    margin-right: 0;
    margin-bottom: 35px;
    max-width: 100%;
  }
}
.elements__block {
  margin-bottom: 35px;
}

.elements__block-title {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.elements__block_small {
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .elements__block {
    margin-bottom: 18px;
  }
}
.elements__block:last-child {
  margin-bottom: 0;
}
.elements__block-date {
  font-size: 12px;
  line-height: 14px;
  color: #adadad;
  margin-left: 10px;
}
.elements__block-type {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.elements__block-type-name {
  display: inline-block;
  font-size: 15px;
  line-height: 18px;
  color: #212121;
  padding: 2px 8px;
  border: 1px solid #1c75bc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-decoration: none;
}
@media (max-width: 575px) {
  .elements__block-type-name {
    font-size: 12px;
    line-height: 14px;
  }
}
.elements__block-type-name_small {
  font-size: 13px;
  line-height: 15px;
}
@media (max-width: 575px) {
  .elements__block-type-name_small {
    font-size: 12px;
    line-height: 14px;
  }
}
.elements__block-type-name a:hover {
  color: #1c75bc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.elements__block-link {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 575px) {
  .elements__block-link {
    font-size: 14px;
    line-height: 16px;
  }
}
.elements__block-link_bold {
  font-weight: 300;
  /*font-size: 20px;*/
  line-height: 20px;
}
@media (max-width: 575px) {
  .elements__block-link_bold {
    font-size: 14px;
    line-height: 16px;
  }
}
.elements__block-title:hover {
  border-bottom: 1px solid #1c75bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.elements__block-title:hover .elements__block-link {
  color: #1c75bc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.pagination {
  margin-top: 55px;
}
.pagination svg {
  fill: #fff;
}
@media (max-width: 575px) {
  .pagination {
    margin-top: 20px;
  }
}
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pagination__item {
  margin-right: 14px;
}
@media (max-width: 575px) {
  .pagination__item {
    margin-right: 12px;
  }
}
@media (max-width: 360px) {
  .pagination__item {
    margin-right: 10px;
  }
}
.pagination__item:last-child {
  margin-right: 0;
}
.pagination__item_next {
  margin-left: 26px;
}
@media (max-width: 575px) {
  .pagination__item_next {
    margin-left: 28px;
  }
}
@media (max-width: 360px) {
  .pagination__item_next {
    margin-left: 0;
  }
}
.pagination__item_prev {
  margin-right: 40px;
}
@media (max-width: 360px) {
  .pagination__item_prev {
    margin-right: 10px;
  }
}
.pagination__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background: #f8f9fa;
  border: 1px solid #1c75bc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .pagination__link {
    width: 40px;
    height: 40px;
  }
}
.pagination__link:hover:not(.pagination__link_active):not(.pagination__link_arrow) {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #d0eaff;
}
.pagination__link_active {
  background: #1c75bc;
  color: #fff;
}
.pagination__link_arrow {
  background: #1c75bc;
}
.pagination__link_arrow:hover {
  background: #18629d;
}
.breadcrumbs {
  margin: 30px 0;
}
@media (max-width: 575px) {
  .breadcrumbs {
    margin: 30px 0 20px;
  }
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.breadcrumbs__link,
.breadcrumbs__separator {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #c4c4c4;
  text-decoration: none;
}
@media (max-width: 575px) {
  .breadcrumbs__link,
  .breadcrumbs__separator {
    font-size: 14px;
    line-height: 16px;
  }
}
.breadcrumbs__separator {
  display: block;
  margin: 0 7px;
}
.breadcrumbs__title {
  color: #1c75bc;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 575px) {
  .breadcrumbs__title {
    font-size: 14px;
    line-height: 16px;
  }
}
.articles {
  margin-bottom: 55px;
}
@media (max-width: 575px) {
  .articles {
    margin-bottom: 35px;
  }
}
@media (max-width: 360px) {
  .articles__title {
    display: none;
  }
}
.articles__inner {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
@media (max-width: 991px) {
  .articles__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .articles__inner {
    margin-top: 10px;
  }
}
.articles__more {
  margin-top: auto;
}
.articles__galery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 720px;
  margin-right: 28px;
}
@media (max-width: 991px) {
  .articles__galery {
    margin-right: 0;
    max-width: 100%;
  }
}
.articles__galery-title {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .articles__galery-title {
    margin-bottom: 16px;
  }
}
.articles__galery-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 28px 22px;
}
@media (max-width: 575px) {
  .articles__galery-inner {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
@media (max-width: 360px) {
  .articles__galery-title {
    display: none;
  }
}
.articles__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 991px) {
  .articles__list {
    margin-top: 35px;
  }
}
.articles__list .elements__list {
  margin-bottom: 28px;
}
.articles__list-title {
  margin-bottom: 24px;
}
.blocks {
  padding: 40px 0;
}
.blocks__title {
  margin-bottom: 28px;
}
.blocks__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575px) {
  .blocks__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.blocks__large {
  max-width: 720px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .blocks__large {
    width: calc(50% - 10px);
    margin-right: 10px;
  }
}
@media (max-width: 575px) {
  .blocks__large {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
.blocks__btn {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575px) {
  .blocks__btn {
    margin-top: 28px;
  }
}
@media (max-width: 360px) {
  .blocks__btn .main-btn {
    width: 100%;
  }
}
.blocks__list {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 400px;
  width: 100%;
}
@media (max-width: 767px) {
  .blocks__list {
    width: calc(50% - 10px);
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 575px) {
  .blocks__list {
    max-width: 100%;
  }
}
.blocks__list-item {
  margin-top: 30px;
}
@media (max-width: 575px) {
  .blocks__list-item {
    margin-top: 20px;
  }
}
.blocks__list-item:first-child {
  margin-top: 0;
}
.result {
  padding-bottom: 55px;
}
@media (max-width: 767px) {
  .result {
    padding-bottom: 30px;
  }
}
.result-line__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
.result-line__box:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .result-line__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.result-line__box-percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .result-line__box-percent {
    margin-bottom: 12px;
    width: 100%;
  }
}
.result-line__area {
  margin: 30px 0 55px;
}
@media (max-width: 767px) {
  .result-line__area {
    margin: 30px 0;
  }
}
.result-line__count {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #000;
}
.result-line__progress {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: #f8f9fa;
  height: 12px;
  margin: 0 12px;
}
@media (max-width: 767px) {
  .result-line__progress {
    margin: 0 0 0 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.result-line__progress-block {
  background: #1c75bc;
  height: 12px;
  display: block;
}
.result-line__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
  max-width: 430px;
}
@media (max-width: 767px) {
  .result-line__text {
    max-width: 100%;
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.result-pie__area {
  margin: 30px 0 55px;
}
@media (max-width: 767px) {
  .result-pie__area {
    margin: 30px 0;
  }
}
.result-pie__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}
.result-pie__box:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .result-pie__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.result-pie__chart {
  margin-right: 40px;
}
@media (max-width: 767px) {
  .result-pie__chart {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.result-pie__chart-block {
  width: 190px;
  height: 190px;
  border-radius: 50%;
}
.result-pie__count {
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  color: #212121;
  margin-bottom: 8px;
}
.result-pie__text {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #212121;
}
.survey {
  padding: 0 0 55px;
}
.survey__text {
  margin: 24px 0 36px;
  font-size: 20px;
  line-height: 23px;
  color: #212121;
}
.survey__text p {
  margin-bottom: 16px;
}
.survey__text p:last-child {
  margin-bottom: 0;
}
.survey__box {
  margin-bottom: 38px;
}
.survey__box:last-child {
  margin-bottom: 0;
}
.survey__box-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #212121;
  margin-bottom: 16px;
}
.survey__box-text {
  margin-bottom: 18px;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
}
.survey__box-item-block {
  margin-bottom: 15px;
}
.survey__box-item-block:last-child {
  margin-bottom: 0;
}
.survey__submit-btn {
  width: 100%;
  max-width: 380px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form__label {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 19px;
  color: #212121;
  display: block;
}
.form__radio {
  display: none;
}
.form__radio-title {
  margin-left: 8px;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form__radio-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.form__radio-label:hover .form__radio-title {
  color: #1c75bc;
}
.form__radio-icon {
  width: 16px;
  height: 16px;
  border: 1px solid #343a40;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 20px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form__radio:checked ~ .form__radio-icon {
  background: #1c75bc;
  border: 1px solid #1c75bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form__radio:checked ~ .form__radio-icon ~ .form__radio-title {
  color: #1c75bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.form__select .custom-select .custom-select__option--value {
  border: 1px solid #c4c4c4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  background: #fff;
}
.form__select .custom-select.custom-select--active .custom-select__option--value {
  border: 1px solid #212121;
}
.form__select .custom-select__option--value {
  height: 52px;
  font-size: 16px;
  line-height: 19px;
  color: #c4c4c4;
  background: transparent;
}
.form__select .custom-select__option--value:hover {
  background: transparent;
}
.form__select .custom-select__dropdown {
  background: #fff;
  border: 0;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  top: calc(100% + 6px);
}
.form__select .custom-select__option--value:after {
  color: #212121;
}
.form__select .custom-select--active .custom-select__option--value:after {
  color: #1c75bc;
}
.form__select .custom-select__option:not(.custom-select__option--value) {
  padding: 12px 20px;
}
.form__select .custom-select__option:not(.custom-select__option--value):hover {
  background: #d0eaff;
}
.form__select .custom-select__option:not(.custom-select__option--value):first-child {
  margin-top: 8px;
}
.form__select .custom-select__option:not(.custom-select__option--value):last-child {
  margin-bottom: 8px;
}
.about__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}
.about__tabs_overflow {
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.about__tabs_overflow::-webkit-scrollbar {
  display: none;
}
.about__tabs-item {
  font-size: 18px;
  line-height: 21px;
  color: #212121;
  margin-right: 70px;
  padding-bottom: 24px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .about__tabs-item {
    margin-right: 30px;
  }
}
.about__tabs-item-btn {
  cursor: pointer;
  text-decoration: none;
  color: #212121;
}
.about__tabs-item:before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 4px;
  background: transparent;
  opacity: 0;
}
.about__tabs-item:hover,
.about__tabs-item_active {
  color: #1c75bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about__tabs-item:hover:before,
.about__tabs-item_active:before {
  background: #1c75bc;
  opacity: 1;
}
.about__tabs-item:hover .about__tabs-item-btn,
.about__tabs-item_active .about__tabs-item-btn {
  color: #1c75bc;
}
.about__tabs-item:last-child {
  margin-right: 0;
}
.about__contents-item {
  display: none;
}
.about__company {
  margin-top: 35px;
}
.about__company-item {
  padding-bottom: 35px;
}
.about__company-item-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  margin-bottom: 24px;
}
.about__company-item-list-element {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about__company-item-list-element:before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #1c75bc;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 12px;
}
.about__company-item-list-element:last-child {
  margin-bottom: 0;
}
.about__company-logo {
  padding: 35px 0;
  border-top: 1px solid #e0e0e0;
}
.about__company-text-subtitle,
.about__company-text-title {
  font-size: 20px;
  line-height: 23px;
  color: #000;
}
.about__company-text-subtitle {
  margin: 16px 0 28px;
}
.about__company-text-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  margin-bottom: 28px;
}
.about__company-text-employee {
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  margin-bottom: 16px;
}
.about__company-text-employee:last-child {
  margin-bottom: 0;
}
.about__company-data {
  margin-top: 55px;
  padding: 48px 0;
}
.about__company-data-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
}
@media (max-width: 767px) {
  .about__company-data-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.about__company-data-text {
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  max-width: 720px;
  margin-left: 80px;
}
@media (max-width: 767px) {
  .about__company-data-text {
    margin-left: 0;
    margin-top: 25px;
  }
}
.about__company-data-text-element {
  margin-bottom: 38px;
}
.about__company-data-text-element:last-child {
  margin-bottom: 0;
}
.about__contacts-logo {
  margin: 36px 0 24px;
}
.about__contacts-title {
  font-size: 28px;
  line-height: 33px;
  color: #212121;
  margin-bottom: 4px;
}
.about__contacts-subtitle {
  font-size: 20px;
  line-height: 23px;
  color: #212121;
}
.about__contacts-list {
  margin: 35px 0 55px;
}
.about__contacts-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.about__contacts-list-item:last-child {
  margin-bottom: 0;
}
.about__contacts-list-item svg {
  fill: #1c75bc;
  margin-right: 14px;
}
.about__contacts-map {
  padding: 40px 0;
}
.about__contacts-map-title {
  margin-bottom: 30px;
}
.about__ads {
  padding-bottom: 55px;
}
.about__ads-text {
  padding: 35px 0;
  font-size: 20px;
  line-height: 23px;
  color: #212121;
}
.about__ads-text-link {
  color: #1c75bc;
}
.about__ads-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about__ads-btn-link {
  width: 100%;
  max-width: 252px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.actions__title {
  margin-bottom: 28px;
}
.actions__filter {
  margin-top: 35px;
}
.actions__filter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .actions__filter-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.actions__filter-submit-btn {
  width: 252px;
}
@media (max-width: 767px) {
  .actions__filter-submit-btn {
    width: 100%;
  }
}
.actions__filter-row {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 28px;
}
@media (max-width: 767px) {
  .actions__filter-row {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.actions__filter-select {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}
.actions__tags {
  margin-top: 35px;
}
.actions__tags-title {
  font-size: 25px;
  line-height: 28px;
  color: #212121;
  margin-bottom: 24px;
}
.actions__tags-btn {
  font-size: 14px;
  line-height: 20px;
  color: #0079c2;
  display: inline-block;
  cursor: pointer;
  margin: 10px 0 20px;
}
.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.tags__item {
  margin-right: 10px;
  margin-bottom: 10px;
}
.tags__item-link {
  font-size: 15px;
  line-height: 18px;
  color: #212121;
  background: #fff;
  border: 1px solid #1c75bc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.js-tags-item .-active {
	color: #fff;
  background: #1c75bc;
	
}
@media (max-width: 575px) {
  .tags__item-link {
    font-size: 12px;
    line-height: 14px;
  }
}
.tags__item-link:hover {
  color: #1c75bc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.article__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 110px;
}
@media (max-width: 991px) {
  .article__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px 0 50px;
  }
}
.article__action {
  margin-left: 15px;
}
.article__action a {
 font-size: 14px;
}
@media (max-width: 575px) {
  .article__action {
    margin-left: 5px;
  }
}
.article__main {
  width: calc(100% - 390px);
}
@media (max-width: 991px) {
  .article__main {
    width: 100%;
  }
}
.article__main-image img {
  width: 100%;
}
.article__main-date {
  margin: 15px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #c4c4c4;
}
@media (max-width: 767px) {
  .article__main-date {
    font-size: 14px;
    line-height: 20px;
    margin: 6px 0 20px;
  }
}
.article__main-actions {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: auto;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .article__main-actions {
    margin-top: 6px;
  }
}
.article__main-content {
  margin-top: 35px;
}
.article__main-content-p {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
  margin: 12px 0;
}
@media (max-width: 767px) {
  .article__main-content-p {
    font-size: 14px;
    margin: 8px 0;
  }
}
.article__main-content a {
  text-decoration: none;
  color: #1c75bc;
}
.article__main-content-title {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 28px;
  line-height: 33px;
  color: #212121;
}
@media (max-width: 767px) {
  .article__main-content-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }
}
.article__main-content-name {
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  margin-bottom: 36px;
}
@media (max-width: 767px) {
  .article__main-content-name {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 15px;
  }
}
.article__main-content-subtitle {
  margin-top: 36px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #212121;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .article__main-content-subtitle {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 8px;
    margin-top: 15px;
  }
}
.article__main-content-boldcolorspace {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  color: #1c75bc;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .article__main-content-boldcolorspace {
    margin: 15px 0;
    font-size: 16px;
    line-height: 19px;
  }
}
.article__main-content-boldcolorspace_large {
  line-height: 30px;
}
@media (max-width: 767px) {
  .article__main-content-boldcolorspace_large {
    line-height: 19px;
  }
}
.article__main-content-normalspace {
  font-size: 20px;
  line-height: 23px;
  color: #212121;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .article__main-content-normalspace {
    margin: 15px 0;
    font-size: 20px;
    line-height: 23px;
  }
}
.article__main-content-box {
  font-style: italic;
  font-size: 16px;
  line-height: 20px;
  color: #212121;
  position: relative;
  padding-left: 28px;
  margin: 24px 0;
}
@media (max-width: 767px) {
  .article__main-content-box {
    margin: 15px 0;
    font-size: 16px;
    line-height: 20px;
  }
}
.article__main-content-box:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 4px;
  background: #fc0;
  display: block;
}
.article__main-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 35px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 991px) {
  .article__main-data {
    display: none;
  }
}
.article__main-data-author {
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  color: #000;
  margin-left: 10px;
}
.article__sidebar {
  max-width: 360px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 30px;
}
@media (max-width: 991px) {
  .article__sidebar {
    margin-left: 0;
    max-width: 100%;
  }
}
.article__sidebar-tags {
  border-top: 1px solid #e0e0e0;
  margin-top: 28px;
  padding-top: 28px;
}
@media (max-width: 991px) {
  .article__sidebar-tags {
    margin-top: 24px;
    padding-top: 24px;
  }
}
.article__sidebar-tags-title {
  font-size: 24px;
  line-height: 28px;
  color: #212121;
  margin-bottom: 28px;
}
@media (max-width: 991px) {
  .article__sidebar-tags-title {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 24px;
  }
}
.article__sidebar-tags-btn {
  margin-top: 28px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .article__sidebar-tags-btn {
    margin-top: 24px;
  }
}
.article__sidebar-tags-btn span {
  font-size: 20px;
  line-height: 23px;
  color: #1c75bc;
}
@media (max-width: 991px) {
  .article__sidebar-tags-btn span {
    font-size: 16px;
    line-height: 19px;
  }
}
.article__sidebar-tags-btn svg {
  fill: #212121;
  margin-left: 8px;
}
.article__sidebar-tags-btn.js-tags-btn-active svg,
.article__sidebar-tags-btn svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.article__sidebar-tags-btn.js-tags-btn-active svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.article__sidebar-items {
  margin: 140px 0 38px;
}
@media (max-width: 991px) {
  .article__sidebar-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
    margin: 16px 0 35px;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .article__sidebar-items {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.article__sidebar-item {
  margin-bottom: 40px;
}
.article__sidebar-item:last-child {
  margin-bottom: 0;
}
.article__sidebar-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .article__sidebar-social {
    border-top: 1px solid #e0e0e0;
    margin-top: 16px;
    padding-top: 24px;
  }
}
.article__sidebar-social svg {
  fill: #1c75bc;
}
.article__sidebar-social-text {
  font-size: 24px;
  line-height: 28px;
  color: #212121;
  margin-right: 24px;
}
@media (max-width: 991px) {
  .article__sidebar-social-text {
    font-size: 20px;
    line-height: 23px;
  }
}
.article__sidebar-social-text_small {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}
.article__sidebar-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.article__sidebar-social-item {
  margin-right: 16px;
}
@media (max-width: 360px) {
  .article__sidebar-social-item {
    margin-right: 10px;
  }
}
.article__sidebar-social-item:last-child {
  margin-right: 0;
}
.article__sidebar-social-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #c4c4c4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.article__sidebar-social-link svg {
  margin: 0 auto;
}
.footer {
  background: #343a40;
}
.footer__menu {
  /*padding: 80px 0 60px;*/
	padding: 20px 0 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 0.5px solid #828282;
}
@media (max-width: 991px) {
  .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0 0;
    border: 0;
  }
}
.footer__menu-item {
  margin: 0 10px;
}
@media (max-width: 991px) {
  .footer__menu-item {
    margin: 0;
    padding: 24px 0;
    border-bottom: 0.5px solid #828282;
  }
}
.footer__menu-item:last-child {
  margin: 0;
}
.footer__menu-item:first-child {
  margin: 0;
  padding-top: 0;
}
.footer__menu-item_large {
  max-width: 422px;
}
@media (max-width: 991px) {
  .footer__menu-item_large {
    max-width: 100%;
  }
}
.footer__menu-item_small {
  max-width: 245px;
}
@media (max-width: 991px) {
  .footer__menu-item_small {
    max-width: 100%;
  }
}
.footer__menu-item-title {
  font-size: 32px;
  line-height: 37px;
  margin-bottom: 28px;
}
@media (max-width: 575px) {
  .footer__menu-item-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 24px;
  }
}
.footer__menu-item-area {
  margin-bottom: 12px;
}
.footer__menu-item-area:last-child {
  margin-bottom: 0;
}
.footer__menu-item-area-name {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 575px) {
  .footer__menu-item-area-name {
    font-size: 14px;
  }
}
.footer__menu-item-area-name_hover:hover {
  color: #fc0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__actions {
  /*padding: 60px 0 80px;*/
  padding: 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer__actions {
    padding: 24px 0 30px;
  }
}
.footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__social-list-item {
  margin-right: 24px;
}
@media (max-width: 575px) {
  .footer__social-list-item {
    margin-right: 16px;
  }
}
.footer__social-list-item:last-child {
  margin-right: 0;
}
.footer__social-list-link {
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #828282;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .footer__social-list-link {
    width: 40px;
    height: 40px;
  }
}
.footer__social-list-link svg {
  fill: #828282;
  display: block;
  margin: 0 auto;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.footer__social-list-link:hover {
  border: 1px solid #1c75bc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__social-list-link:hover svg {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.footer__social-list-link:hover svg.svg-facebook {
  fill: #0777e8;
}
.footer__social-list-link:hover svg.svg-youtube {
  fill: red;
}
.footer__social-list-link:hover svg.svg-telegram {
  fill: #0777e8;
}
.footer__social-list-link:hover svg.svg-twitter {
  fill: #41abe1;
}
.footer__rule {
  font-size: 50px;
  line-height: 59px;
  color: #f2f2f2;
}
@media (max-width: 575px) {
  .footer__rule {
    font-size: 36px;
    line-height: 42px;
  }
	}
@media (max-width: 1024px) {
	.main-container {
    padding: 0 15px;
}
}
.article__main-content h4 a {font-weight: bold;}
.article__main-content ul li:before {
    content: '\2022';
    display: block;
    position: relative;
    max-width: 0px;
    max-height: 0px;
    left: -25px;
    top: -9px;
    color: #1c75bc;
    font-size: 30px;
}
.article__main-content ul, .article__main-content ol {
    padding-left: 25px;
}
.article__main-content ul li, .article__main-content ol li {
    margin-top: 1em;
    margin-bottom: 1em;
}