.header .menu-box {
  width: 50%;
}

.white {
  position: relative;
  background: url(/images/ask-bg.png) no-repeat 50% 0%;
  background-size: 100% auto;
  z-index: 3;
  padding-top: 50px;
  /*padding-bottom: 50px;*/
  padding-bottom: 100px;
}
.white:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: calc( -6.875vw + 1px);
    width: 100%;
    height: 6.875vw;
    background: url(/images/ask-top.png) no-repeat 50% 100%;
    background-size: 100% 100%;
}

.white .questionBox {
  box-shadow: 0 0 20px rgba(16,148,231,0.5)
  border: 1.6px solid #1094e7;
  background: #1094e7;
  color: #fff;
}
.white .search input {
  background-color: #def2ff;
  color: #1094e7;
}
.white .question:before {
  background-color: #def2ff;
  background-image: url(/images/arrow-blue.svg);
}
.white .answer {
  background-color: #def2ff;
  color: gray;
}

.white .h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 50px;
}
.white .h2:before {
  content: '';
  width: 43px;
  height: 4px;
  margin-right: 25px;
  background: #1094e7;
}
.questionBox {
  padding: 16px 50px 16px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 25px;
  transition: .3s;
  /*font-weight: 700;*/
}
.questionBox.search {
  padding: 10px 26px;
}
.search input {
  padding: 6px;
  width: 100%;
}
.questionBox:not(:last-child) {
  margin-bottom: 15px;
}
.question {
  cursor: pointer;
  position: relative;
  font-weight: 700;
}
.question:before {
    position: absolute;
    content: '';
    width: 15px;
    height: 15px;
    right: -37px;
    top: -3px;
    border-radius: 15px;
    background-size: contain;
    background-position: center;
    padding: 5px;
    background-repeat: no-repeat;
}
.questionBox[data-show="true"] .question:before {
  transform: rotate(180deg);
}
.answerBox {
  margin-left: -15px;
  margin-right: -35px;
  overflow: hidden;
  transition: 0.3s;
  max-height: 0px;
}
.answer {
  border-radius: 0px 0px 20px 20px;
  padding: 16px 30px 16px 30px;
  margin-top: 16px;
}
.answer p {
  margin-bottom: 10px;
}
red {
  color: red;
  font-weight: 700;
}
.spravochnik {
  line-height: 25px;
  margin-bottom: 20px;
  padding: 0px 150px;
}
@media (max-width: 991px) {
  .spravochnik {padding: 0px 50px;}
}
@media (max-width: 600px) {
  .spravochnik {padding: 0px 0px;}
}
.spravochnik li {
  list-style: disc;
  margin-left: 20px;
}
#socialFixed {
  position: fixed;
  z-index: 999;
  bottom: 0px;
  margin-bottom: 35px;
}