:root {
  --color-grey: #818181;
  --color-light-grey: #b8b8b8;
  --color-yellow: #ffcc00;
  --color-light-yellow: #ffdb4d;
  --color-link: #249c72;
}

/* burger  */

#menu {
  position: absolute;
  z-index: 10;
  top: 130px;
  bottom: 0;
  right: -20px;
  width: 200px;
  height: 320px;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-transition: -webkit-transform .6s ease-in-out;
  transition: -webkit-transform .6s ease-in-out;
  -o-transition: transform .6s ease-in-out;
  transition: transform .6s ease-in-out;
  transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-box-shadow: 0px 5px 40px #b8b8b8;
  box-shadow: 0px 5px 40px #b8b8b8;
}

#menu.is-active {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.burger__menu {
  display: none;
}

.burger {
  display: none;
  border: none;
  width: 25px;
  height: 25px;
  margin-left: 20px;
  cursor: pointer;
  -webkit-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}

.hamburger .line {
  width: 25px;
  height: 2px;
  background-color: #000;
  display: block;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}


/* main   */

.container__start {
  position: relative;
}

header {
  color: #000;
  z-index: 2;
  width: 100%;
  background-color: #fff;
}

.header__container {
  padding: 0 60px;
}

.header__top-list {
  display: flex;
  float: right;
  margin-top: 20px;
  align-items: center;
}

.header__top-list--item {
  margin-right: 40px;
}

.header__top-list--item-link {
  text-decoration: none;
  color: #000;
}

.header__down {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100px;
}

.mobile-point {
  display: none;
}

.header__down-logo {
  max-width: 200px;
}

.header__down-list,
.header__down-sociallist {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__down-sociallist--item {
  margin-left: 20px;
}

.header__down-list--item-link {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}

.header__down-list--item {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: all .7s;
}

.header__down-list--item:hover {
  border-bottom: 2px solid var(--color-yellow);
}

.header__down-list--item:not(:last-child) {
  margin-right: 60px;
}

.header__down-sociallist--item-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .7s;
}

.header__down-sociallist--item-link:hover {
  background-color: #ddd;
}

.header__down-sociallist--item-link-img {
  width: 20px;
}

.header-seach-menu-mob {
  display: none;
  position: absolute;
  top: 10px;
  right: 20px;
}


/* dropmenu */


.dropbtn {
  background-color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  cursor: pointer;
  transition: all .1s;
  color: #000;
}

.dropbtn:hover {
  border: 1px solid #ffcc00;
}

.dropbtn:focus .dropbtn-arrow,
.dropbtn:active .dropbtn-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropbtn:focus {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.dropbtn-img {
  width: 12px;
}

.dropbtn-arrow {
  width: 12px;
  transition: all .4s;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  text-align: center;
  position: absolute;
  background-color: #fff;
  min-width: 126px;
  z-index: 1;
  border: 1px solid #ffcc00;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content:hover {
  background-color: #f2f2f2;
}

/* Показать выпадающее меню (используйте JS, чтобы добавить этот класс .dropdown-content содержимого, когда пользователь нажимает на кнопку выпадающего списка) */
.show {
  display: block;
}


/* dropmenu */

.dropbtn {
  background-color: #fff;
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 30px;
  cursor: pointer;
  transition: all .1s;
}

.dropbtn:hover {
  border: 1px solid #ffcc00;
}

.dropbtn:focus .dropbtn-arrow,
.dropbtn:active .dropbtn-arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropbtn:focus {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.dropbtn-img {
  width: 12px;
}

.dropbtn-arrow {
  width: 12px;
  transition: all .4s;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  text-align: center;
  position: absolute;
  background-color: #fff;
  min-width: 126px;
  z-index: 1;
  border: 1px solid #ffcc00;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}


.dropdown-content:hover {
  background-color: #f2f2f2;
}

/* Показать выпадающее меню (используйте JS, чтобы добавить этот класс .dropdown-content содержимого, когда пользователь нажимает на кнопку выпадающего списка) */
.show {
  display: block;
}

.CurrentPage {
  border-bottom: 2px solid #ffcc00;
}

@media (max-width:1200px) {
  .header__down-list--item:not(:last-child) {
    margin-right: 50px;
  }
}

@media (max-width:1100px) {
  .header__down-list--item:not(:last-child) {
    margin-right: 40px;
  }
}

@media (max-width:996px) {
  .header__down-list--item:not(:last-child) {
    margin-right: 20px;
  }

  .header__down-sociallist--item {
    margin-left: 10px;
  }
}

@media (max-width:996px) {

  .header__container {
    padding: 0 20px;
  }

  .header__down {
    justify-content: center;
  }

  .header__down-list,
  .header__down-sociallist,
  .header__top-list--item:nth-child(n + 2):nth-child(-n + 5),
  .open-header-popup-seach {
    display: none;
  }

  .header-seach-menu-mob,
  .header__down-sociallist--mob {
    display: flex;
  }

  .header__down-sociallist--mob {
    margin-top: 10px;
  }

  .burger__menu {
    display: flex;
    align-items: center;
  }

  .hamburger {
    display: block;
  }

  .header-seach-mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 20px;
  }

  .header__top-list {
    display: flex;
    float: none;
    margin-top: 20px;
    align-items: center;
    justify-content: space-between;
  }

  .header__down-sociallist--item {
    margin-left: 0;
    margin-right: 10px;
  }

}

@media (max-width:520px) {
  .dropdown-content {
    border: none;
  }

  .modal__map-floor--text {
    font-size: 24px;
  }
}