/* @font-face {
  font-family: "OpenSans";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/OpenSans/OpenSans.eot");
  src: url("../fonts/OpenSans/OpenSans.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans/OpenSans.woff") format("woff"), url("../fonts/OpenSans/OpenSans.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSansBold";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/OpenSansBold/OpenSansBold.eot");
  src: url("../fonts/OpenSansBold/OpenSansBold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSansBold/OpenSansBold.woff") format("woff"), url("../fonts/OpenSansBold/OpenSansBold.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSansSemiBold";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/OpenSansSemiBold/OpenSansSemiBold.eot");
  src: url("../fonts/OpenSansSemiBold/OpenSansSemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSansSemiBold/OpenSansSemiBold.woff") format("woff"), url("../fonts/OpenSansSemiBold/OpenSansSemiBold.ttf") format("truetype");
} */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.brg-menu {
  top: 0px;
  height: calc(100% - 80px);
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  background: #303443;
  -webkit-transition: all 0.5s ease, top 0s ease 0.5s;
  -o-transition: all 0.5s ease, top 0s ease 0.5s;
  transition: all 0.5s ease, top 0s ease 0.5s;
}
.brg-menu.active {
  top: 50px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease, top 0s ease;
  -o-transition: all 0.5s ease, top 0s ease;
  transition: all 0.5s ease, top 0s ease;
}
.brg-menu .brg-top {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  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;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 10px;
  position: relative;
}
.brg-menu .brg-top .brg-city {
  color: #488EFB;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  font-family: "OpenSansBold", sans-serif;
  position: relative;
  padding-left: 24px;
  margin-bottom: 7px;
}
.brg-menu .brg-top .brg-city::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 13px;
  height: 17px;
  background: url(../img/city-icn.svg);
}
.brg-menu .brg-top .btn {
  color: #000;
  padding-left: 15px;
  padding-right: 18px;
  font-size: 16px;
  line-height: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 7px;
}
.brg-menu .brg-top .btn:hover {
  color: #fff;
}
.brg-menu .brg-mid {
  padding-left: 20px;
  padding-right: 20px;
  background: #fff;
  padding-top: 19px;
  padding-bottom: 45px;
  border-bottom: 3px solid #488EFB;
}
.brg-menu .brg-mid .brg-search {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.brg-menu .brg-mid .brg-search button {
  position: absolute;
  background: no-repeat url(../img/search-icn.svg) 50%;
  border: 0px solid #000;
  width: 50px;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
.brg-menu .brg-mid .brg-search input {
  width: 100%;
  outline: none;
  border: 1px solid #EBEBEB;
  background: #fff;
  font-size: 16px;
  line-height: 16px;
  font-family: "OpenSans", sans-serif;
  color: #000;
  border-radius: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 23px;
  padding-right: 50px;
}
.brg-menu .brg-mid .brg-list .brg-l-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 33px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.brg-menu .brg-mid .brg-list .brg-l-point:last-child {
  margin-bottom: 0px;
}
.brg-menu .brg-mid .brg-list .brg-l-point:hover .brg-lp-img {
  background: #488EFB;
}
.brg-menu .brg-mid .brg-list .brg-l-point:hover .brg-lp-descr {
  color: #488EFB;
}
.brg-menu .brg-mid .brg-list .brg-l-point .brg-lp-img {
  background: #313544;
  border-radius: 10px;
  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;
  min-width: 30px;
  height: 30px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.brg-menu .brg-mid .brg-list .brg-l-point .brg-lp-img img {
  display: block;
  max-width: 100%;
}
.brg-menu .brg-mid .brg-list .brg-l-point .brg-lp-descr {
  width: calc(100% - 30px);
  padding-left: 21px;
  color: #000000;
  font-size: 16px;
  line-height: 22px;
  font-family: "OpenSans", sans-serif;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

header .hd-burger.active {
  background: no-repeat url(../img/brg-close.svg) 50%;
}

@media only screen and (max-width: 768px) {
  .fixed-menu,
.brg-menu {
    height: calc(100vh - 45px);
  }

  .fixed-menu .fm-nav {
    width: 100%;
  }
  .fixed-menu .fm-nav.active {
    left: 0;
  }

  .fixed-menu .fm-nav {
    left: -100%;
  }
}