@charset "UTF-8";
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,500,300&display=swap" rel="stylesheet');
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-input-placeholder {
  color: transparent;
}

:focus:-moz-input-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

/*--------------------*/
.header {
  z-index: 10;
  max-width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.header_hello {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  width: 50%;
}
.header_hello p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header_text_collor {
  color: #fff;
}

.menu_header {
  width: 50%;
  display: inline;
}
.menu_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.menu_header li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 18px;
  font-weight: 300;
  padding: 15px 0;
}
.menu_header li:first-child {
  margin: 0 20px 0 0;
}
.menu_header li:last-child {
  margin: 0 10px 0 0;
}

.nav_color_button {
  color: #fff;
  border-radius: 50px;
  min-height: 30px;
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
}

.nav_color_button:hover {
  border-radius: 50px;
  background: url(../img/BG.jpg) left no-repeat;
}

.header_fixed {
  max-height: 60px;
  padding: 20px 10px;
  overflow: hidden;
  position: fixed;
  background-color: #fff;
  top: 0;
  width: 100%;
  margin: 0 auto;
}
.header_fixed .nav_color_button {
  color: rgb(0, 0, 0);
}
.header_fixed .header_hello p {
  color: rgb(0, 0, 0);
}