@font-face {
  font-family: 'Helveticaneuecyr-Light';
  src: url('../fonts/helveticaneuecyr_light.eot');
  src: url('../fonts/helveticaneuecyr_light.eot?#iefix') format('embedded-opentype'),
       url('../fonts/helveticaneuecyr_light.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr_light.woff') format('woff');
        font-display: swap;
}

@font-face {
  font-family: 'Helveticaneuecyr-Roman';
  src: url('../fonts/helveticaneuecyr_roman.eot');
  src: url('../fonts/helveticaneuecyr_roman.eot?#iefix') format('embedded-opentype'),
       url('../fonts/helveticaneuecyr_roman.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr_roman.woff') format('woff');
        font-display: swap;
}

@font-face {
  font-family: 'Helveticaneuecyr-Medium';
  src: url('../fonts/helveticaneuecyr_medium.eot');
  src: url('../fonts/helveticaneuecyr_medium.eot?#iefix') format('embedded-opentype'),
       url('../fonts/helveticaneuecyr_medium.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr_medium.woff') format('woff');
        font-display: swap;
}


@font-face {
  font-family: 'Helveticaneuecyr-Bold';
  src: url('../fonts/helveticaneuecyr_bold.eot');
  src: url('../fonts/helveticaneuecyr_bold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/helveticaneuecyr_bold.woff2') format('woff2'),
       url('../fonts/helveticaneuecyr_bold.woff') format('woff');
        font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

ul {
  list-style: none;
}

body {
  min-width: 330px;
  font-family: 'Helveticaneuecyr-Roman';
  font-weight: 100;
  -webkit-font-smoothing: antialised;
}

a {
  font-family: 'Helveticaneuecyr-Bold';
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: .2s;
}

a:hover {
  transition: .2s;
}

strong {
  font-family: 'Helveticaneuecyr-Bold';
}

img {
  display: block;
  max-width: 100%;
}

.container {
  position: relative;
  max-width: 1250px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 1260px) {
  .container {
    max-width: 990px;
    width: 100%;
  }  
}

@media (max-width: 991px) {
  .container {
    max-width: 760px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 510px;
  }
}

.flex, .menu {
  display: flex;
  flex-wrap: wrap;
}

.flex--va-center, .menu {
  align-items: center;
}

.flex--center {
  justify-content: center;
}

.menu, .flex--between {
  justify-content: space-between;
}

header {
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding: 15px 0;
}

.menu a, .sidenav a {
  font-family: 'Helveticaneuecyr-Roman';
  font-size: 18px;
  line-height: 1.1;
  text-transform: capitalize;
}

.sidenav a {
  color: #fff;
}

.sidenav a:hover {
  color: #ec1b54;
}

nav ul a {
  color: #000;
}

nav ul a:hover {
  color: #ec1b54;
}

.menu ul li {
  margin-right: 40px;
}

@media(max-width: 991px) {
  .menu a {
    font-size: 17px;
  }
  .menu ul li {
    margin-right: 30px;
  }
  nav ul.flex {
    display: none;
  }
}

header ul li:last-child {
  margin-right: 0;
}

.sidenav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 100000;
  min-height: 100vh;
  width: 100%;
  opacity: 0;
  top: -500%;
  left: auto;
  right: 0;
  background: rgba(0,0,0,0.8);
  overflow-x: hidden;
  transition: 0.3s;
  padding: 20px 0;
}

@media(min-width: 991px) {
  .sidenav {
    display: none;
  }
}

.sidenav ul {
  width: 100%;
}

.sidenav li {
  text-align: center;
  margin-top: 33px;
}

.sidenav li:first-child {
  margin-top: 0;
}

.sidenav .closebtn {
  display: block;
  font-size: 37px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin-top: 33px;
}

.sidenav .closebtn:hover {
  color: #ec1b54;
}

.menu-burger {
  display: none;
  align-items: center;
}

@media(max-width: 991px) {
  .menu-burger {
    display: flex;
  }
}

.menu-burger svg {
  width: 35px;
  height: 35px;
  fill: #016b93;
  transition: .2s;
}

.menu-burger svg:hover {
  fill: #ec1b54;
  transition: .2s;
}



