:root {
  --text: #222222;
  --orange: #fabb18;
  --grey: #6d6f71;
  --btn: #ffcd00;
  --btn_hover: #fdd85f;
  --link: #346fee;
  --green: #3ab54b;
  --green_hover: #63ba76;
  --error: #e31b1b;
}

html {
  color: var(--text);
  background: #fff;
}

body {
  font-family: 'Montserrat';
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-size: 100%;
}
q:before,
q:after {
  content: "";
}
abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-size: 100%;
  box-sizing: border-box;
}

legend {
  color: #000;
}

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

*::-webkit-input-placeholder {
  color: var(--grey);
}

*::-moz-placeholder {
  color: var(--grey);
}

*:-ms-input-placeholder {
  color: var(--grey);
}

*::-ms-input-placeholder {
  color: var(--grey);
}

*::placeholder {
  color: var(--grey);
}

.input {
  position: relative;
  margin-bottom: 32px;
}

.input input {
  position: relative;
  width: 100%;
  height: 62px;
  padding: 31px 16px 14px 24px;
  background-color: #edf1f6;
  border: 0.75px solid #edf1f6;
  border-radius: 0px;
  color: var(--grey);
  outline: none;
  transition: 0.15s all ease;
  -webkit-appearance: none;
}

.input input::-webkit-input-placeholder {
  color: #a3a3a3;
  opacity: 0;
}

.input input::-moz-placeholder {
  color: #a3a3a3;
  opacity: 0;
}

.input input:-ms-input-placeholder {
  color: #a3a3a3;
  opacity: 0;
}

.input input::-ms-input-placeholder {
  color: #a3a3a3;
  opacity: 0;
}

.input input::placeholder {
  color: #a3a3a3;
  opacity: 0;
}

.input input:hover {
  background-color: #e4ebf3;
  transition: 0.15s all ease;
}

.input.focused input {
  padding-right: 50px;
  background-color: #fff;
  border-color: var(--text);
  color: #333;
}
.input.focused.is-valid input {
  background-color: #edf1f6;
  border-color: #edf1f6;
}

.input.focused input::-webkit-input-placeholder {
  opacity: 1;
}

.input.focused input::-moz-placeholder {
  opacity: 1;
}

.input.focused input:-ms-input-placeholder {
  opacity: 1;
}

.input.focused input::-ms-input-placeholder {
  opacity: 1;
}

.input.focused input::placeholder {
  opacity: 1;
}

.input.error input {
  background-color: #fde6e4;
  border-color: #fde6e4;
}

.input label {
  position: absolute;
  left: 60px;
  top: 20px;
  width: 100%;
  color: var(--grey);
}

.input.focused > input ~ label,
.input.focused .autocomplete-wrap > input ~ label {
  top: 11px;
  left: 46px;
  color: #333;
  font-size: 0.75em;
}

.input::before {
  position: absolute;
  display: block;
  content: "";
  left: 24px;
  top: 22px;
  background-size: cover;
  z-index: 1;
}

.input.name::before {
  width: 17px;
  height: 20px;
  background-image: url("../img/common/form/name.svg");
}
.input.name.focused::before {
  width: 10px;
  height: 12px;
  top: 14px;
  left: 26px;
}

.input.email::before {
  width: 22px;
  height: 17px;
  top: 24px;
  background-image: url("../img/common/form/email.svg");
}

.input.email.focused::before {
  width: 13px;
  height: 10px;
  top: 16px;
}

.input.phone::before {
  width: 20px;
  height: 20px;
  top: 22px;
  background-image: url("../img/common/form/phone.svg");
}

.input.phone.focused::before {
  width: 12px;
  height: 12px;
  top: 14px;
}

.input.comment::before {
  width: 22px;
  height: 22px;
  background-image: url("../img/common/form/comment.svg");
}

.input.comment.focused::before {
  width: 12px;
  height: 12px;
  top: 15px;
}

.input .err-wrapper {
  padding: 8px 0 0 25px;
  color: var(--error);
  font-size: 0.75em;
}

.input .valid {
  position: absolute;
  display: none;
  width: 13px;
  height: 11px;
  top: 26px;
  right: 23px;
}

.input.focused.is-valid .valid {
  display: block;
}
.input.show-p.focused input {
  background-color: transparent;
}
.input .placeholder {
  position: absolute;
  top: 28px;
  left: 50px;
  color: var(--grey);
  z-index: 0;
}

.input.focused.hide-p .placeholder {
  display: none;
}

.btn,
a.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn);
  padding: 12px 45px 14px;
  border-radius: 0px;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 1.125em;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.25s ease;
}
.btn.green {
  background-color: var(--green);
  color: #fff;
}

.btn:hover {
  background-color: var(--btn_hover);
  transition: background-color 0.25s ease;
}

.btn.green:hover {
  background-color: var(--green_hover);
}

.politic {
  color: var(--grey);
  font-size: 0.875em;
}

.politic a {
  color: var(--link);
  text-decoration: none;
}

.autocomplete-list {
  display: none;
}

.autocomplete-list.active {
  display: block;
  position: absolute;
  top: 66px;
  width: 100%;
  max-height: 350px;
  padding: 7px 0;
  background-color: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.25);
  -moz-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.25);
  box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.25);
  overflow-y: scroll;
  z-index: 100;
}
.autocomplete-list.active .autocomplete-item {
  padding: 10px;
  cursor: pointer;
}
.autocomplete-list.active .autocomplete-item.focused,
.autocomplete-list.active .autocomplete-item:hover {
  background-color: #f5f5f6;
}

.autocomplete-list.active::-webkit-scrollbar {
  width: 4px;
  background-color: #f9f9fd;
}
.autocomplete-list.active::-webkit-scrollbar-button {
  display: none;
}
.autocomplete-list.active::-webkit-scrollbar-thumb {
  background-color: var(--grey);
  border-radius: 3px;
}

.def {
  text-decoration: none !important;
  color: inherit;
}

.theme_bold {
  font-weight: 700;
}

.new-head {
  position: relative;
  background-color: #fff;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.09);
  z-index: 10;
}
.new-head-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
.new-head-item {
  display: flex;
}
.new-head .logo {
  max-width: 118px;
  width: 100%;
  margin: 15px 0 14px;
}
.new-head .center-part {
  padding-left: 55px;
  text-align: center;
}
.new-head .center-part .title {
  font-size: 1.5em;
  font-weight: 600;
}
.new-head .center-part .subtitle {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.15em;
}
.new-head .center-part .subtitle svg {
  width: 16px;
  margin: 2px 8px 0 0;
}
.new-head .worktime {
  background-image: none;
  align-items: center;
}
.new-head .worktime svg {
  margin-right: 8px;
}
.new-head .worktime .subtitle {
  position: relative;
  margin-left: 8px;
  font-size: 0.75em;
}
.new-head .worktime .subtitle span {
  color: #e0110f;
}
.new-head .worktime .subtitle:before {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 45px;
  top: 0;
  left: -9px;
  background-color: #979797;
}
.new-head .worktime .subtitle.dop:before {
  height: 30px;
}
.new-head .burger {
  display: none;
}
.new-head .btn:active,
.new-head .btn.active {
  box-shadow: none;
}

.modal_wrapper {
  margin: 0;
  padding: 164px 0 0;
  background: rgb(245, 246, 246);
  background: linear-gradient(180deg, rgba(245, 246, 246, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.new_modal {
  width: 360px;
  margin: 0px auto;
  transition: all 1s linear;
}

/* .new_modal.success {
  position: absolute;
  top: 0;
  left: calc(50% - 180px);
  transition: all 1s ease;
} */
.new_modal.opa0 {
  opacity: 0;
}
.new_modal.disable {
  display: none;
  transition: all 1s linear;
}

.new_modal .modal_title {
  position: relative;
}

.new_modal .modal_title .h2 {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.5em;
  font-weight: bold;
}

.new_modal .progress_line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0 43px;
}

.new_modal .progress_line::before {
  position: absolute;
  display: block;
  content: "";
  width: 98%;
  height: 2px;
  left: 1%;
  top: calc(50% - 1px);
  background-color: var(--orange);
}
.new_modal .progress_line.green::before {
  background-color: var(--green);
}

.new_modal .progress_line .item {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #f5f6f6;
  border-radius: 50%;
  z-index: 3;
}

.new_modal .progress_line .item.active {
  width: 34px;
  height: 34px;
  background-color: var(--orange);
  border: 5px solid #f5f6f6;
}
.new_modal .progress_line.green .item.active,
.new_modal .progress_line.green .item.active::before {
  background-color: var(--green);
}

.new_modal .progress_line .item::before {
  position: absolute;
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  left: 5px;
  background-color: #f5f6f6;
  border: 2px solid var(--orange);
  border-radius: 50%;
  z-index: 2;
}
.new_modal .progress_line.green .item::before {
  border-color: var(--green);
}

.new_modal .progress_line .item.active::before {
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  background-color: var(--orange);
  border: 3px solid #f5f6f6;
}

.new_modal .form_note {
  position: relative;
  display: flex;
  align-items: center;
  margin: 22px 0 15px;
  color: var(--grey);
  font-size: 0.875em;
}

.new_modal .form_note img {
  width: 21px;
  height: 21px;
  margin-right: 8px;
}

.new_modal .input {
  width: 100%;
}

.new_modal .btn {
  margin: 16px 0;
}

.new_modal .success_screen {
  padding-top: 21px;
}

.new_modal .success_screen .ico {
  margin-bottom: 30px;
  text-align: center;
}

.new_modal .success_screen .txt {
  margin-bottom: 60px;
}

.new_modal .success_screen .txt .h4 {
  margin-bottom: 5px;
  font-size: 1.5em;
}

.new_modal .modal_title .h2::before {
  position: relative;
  display: block;
  content: "";
  margin-right: 9px;
  background-size: cover;
  width: 24px;
  height: 24px;
}
.new_modal.winners .modal_title .h2::before {
  background-image: url("../img/winner.svg");
}

.bdb_wrap .main_title h2{
  font-weight: 500;
}
.bdb_wrap .main_int_wrap{
  margin-bottom: 24px;
}
.bdb_wrap .main_int_wrap img{
  opacity: 1;
  transition: 0.2s;
}
.bdb_wrap .main_int_wrap:hover img{
  opacity: 0.85;
}
.bdb_wrap .main_int .mi_desc h6{
  font-size: 21px;
}
.bdb_wrap .popup_new_order .input .placeholder{
  top: 28px;
  left: 28px;
}
.bdb_wrap #popup__content-right{
  border-radius: 0px;
  background-color: rgb(255,255,255) !important;
  overflow-y: auto;
}
.bdb_wrap #popup__content-right .close{
  position: absolute;
  top: 10px !important;
  right: 0px;
  width: 45px;
  height: 45px;
  background-image: url(../images/bdb/svg/icon_cross_t.svg);
  background-size: 25px auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  filter: grayscale(1) brightness(0);
  opacity: 1;
  transition: 0.2s;
}
.bdb_wrap #popup__content-right .close:hover{
  opacity: 0.8;
}
.bdb_wrap #popup__content-right.visible-mobile {
  display: block;
}

body.mobile-scroll-lock {
  overflow: hidden;
  height: 100%;
}
.bdb_wrap .main_int h3,
.bdb_wrap .main_int h4,
.bdb_wrap .main_int h5,
.bdb_wrap .main_int h6{
  text-transform: none;
  font-weight: 500;
}
.bdb_wrap img{
  max-width: 100%;
}
.bdb_wrap .popup__title_l_block{
  font-size: 45px;
  color: #201D48;
  font-weight: 500;
}
.bdb_wrap h1,.bdb_wrap h2,.bdb_wrap h3,.bdb_wrap h4,.bdb_wrap h5,.bdb_wrap h6{
  color: #201D48;
}
.bdb_wrap .main_title h2{
  color: #201D48;
}
.bdb_wrap h1{
  font-size: 56px;
  margin-bottom: 30px;
}
.bdb_wrap h2{
  font-size: 48px;
  margin-bottom: 30px;
}
.bdb_wrap h3{
  font-size: 40px;
  margin-bottom: 30px;
}
.bdb_wrap h4{
  font-size: 28px;
  margin-bottom: 15px;
}
.bdb_wrap h5{
  font-size: 26px;
  margin-bottom: 15px;
}
.bdb_wrap h6{
  font-size: 16px;
  margin-bottom: 15px;
}
.main_head_bdb{
  padding-top: 145px;
}
.main_head_bdb .main_head_bdb_inner{
  position: relative;
  background-color: #D70008;
  padding: 24px;
}
.bdb_wrap .popup_new_order .popup__content-left{
  padding-right: 115px;
}
.popup_new_order.popup_new_order_bdb form#payment-form{
  padding: 0px;
}
.popup_new_order.popup_new_order_bdb #popup__content-right .popup__content-left{
  border-top: 1px solid #999999;
  padding-top: 45px !important;
  margin-top: 45px !important;
}
.popup_new_order.popup_new_order_bdb .block_inputs .input input{
  padding: 25px 15px 10px 15px;
}
.bdb_wrap .popup_new_order.popup_new_order_bdb #popup__content-right .popup__content-left{
  border-top: 1px solid #999999;
  padding-top: 45px !important;
  margin-top: 45px !important;
}
.bdb_wrap .cart .modal_title p {
  font-size: 14px;
}
.main_head_bdb .main_head_bdb_inner .btn_default{
  padding-right: 90px;
}
#main_menu .btn_default{
  padding-right: 90px;
}
.main_head_bdb .main_head_bdb_inner:before{
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-image: url(../images/bdb/dp.png);
  background-position: 100% 100%;
}
.main_head_bdb .main_head_bdb_inner>div{
  position: relative;
  z-index: 1;
}
.main_head_bdb .main_head_bdb_inner .icon img{
  max-width: 165px;
}
.main_head_bdb .main_head_bdb_inner .btns_block{
  padding-top: 145px;
}
.bdb_wrap .btn_yellow{
  background-color: #F9B000;
  color: rgb(255,255,255);
}
.bdb_wrap .btn_yellow:before{
  background-color: #FFCD00;
}
.bdb_wrap .btn_yellow:hover{
  background-color: #552CA4;
}
.bdb_wrap .btn_yellow:hover:before{
  background-color: #F9B000;
}
.bdb_wrap .theme_red{
  color: #D70008;
}
.bdb_wrap .theme_white{
  color: #FFFFFF;
}
.bdb_wrap #popup__content-right .close{
  display: none;
}
.bdb_wrap .popup_new_order .popup__content-right{
  top: 110px;
}

#blogers_start .modal_title .h2::before {
  background-image: url("../img/blogers.svg");
}
.free .modal_title .h2 {
  display: block;
  width: 100%;
  float: right;
}
.free .modal_title .h2::before {
  display: block;
  float: left;
  background-image: url("../img/free.svg");
}

/* 17. Мини граб секция */
.main_dop_invite h4 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0px;
  margin-bottom: 0px;
}
.main_dop_invite p {
  font-size: 24px;
  text-transform: uppercase;
}
.main_dop_invite {
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 65px;
}
.main_dop_invite_in {
  padding-top: 55px;
  min-height: 295px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: calc(100% - 115px);
  bottom: 0px;
}
.main_dop_invite .main_dop_invite_in {
  background-image: url("../img/common/back_robot_foot.png");
}
@media (max-width: 1399.95px) {
  .bdb_wrap .popup_new_order .popup__content-left {
    padding-right: 30px;
  }
  .bdb_wrap .popup_new_order .popup__content-ticket-content .title {
    font-size: 18px;
  }
}
@media (max-width: 1199.95px) {
  .main_dop_invite h4 {
    padding-right: 45%;
  }
  .bdb_wrap .main_int .mi_desc h6 {
    font-size: 14px;
  }
  .main_head_bdb .main_head_bdb_inner:before {
    background-size: auto 80%;
  }
  .bdb_wrap #popup__content-right.popup{
    width: 100%;
  }
  .bdb_wrap .popup_new_order .popup__content {
    flex-direction: column;
    row-gap: 65px;
  }
}
@media (max-width: 767.95px) {
  .bdb_wrap .popup_new_order .popup__content-right{
    top: 0px;
  }
  .bdb_wrap #popup__content-right .close{
    display: block;
  }
  .bdb_wrap #popup__content-right {
    z-index: 999;
  }
  .bdb_wrap #popup__content-right.popup{
    padding-top: 15px;
  }
  .bdb_wrap #popup__content-right .popup__title_l_block{
    padding: 0px 20px;
  }
  .input label {
    width: auto;
  }
  .main_dop_invite .dop_invite_wrap {
    max-width: 100%;
  }
  .main_dop_invite .dop_invite {
    padding: 22px 25px 14px 25px;
  }
  .main_dop_invite .dop_invite h4 {
    font-size: 28px;
  }
  .main_dop_invite .dop_invite p {
    font-size: 24px;
  }
  .main_dop_invite {
    margin-top: 0px;
  }
  .main_dop_invite h4 {
    padding-right: 0;
    font-size: 22px;
  }
  .main_dop_invite p {
    font-size: 21px;
  }
  .main_dop_invite .main_dop_invite_in {
    padding-bottom: 220px;
    padding-top: 0px;
    background-size: auto 200px;
    background-position: 50% 100%;
  }
}
/* 17. Мини граб секция */

/* 18. Футер */
.main_footer {
  background-color: rgb(251, 197, 0);
  margin-top: 148px;
  padding: 40px 0;
}
.dop_footer_new {
  font-size: 18px;
  color: rgb(31, 31, 31);
  margin-top: 55px;
}
.dop_footer_new .small {
  /* white-space: nowrap; */
  font-size: 16px;
  display: inline-block;
  margin-bottom: 0px;
}
.dop_footer_new .dop_footer_new_in {
  display: flex;
  flex-direction: row;
  align-items: normal;
  justify-content: space-between;
  column-gap: 50px;
}
.dop_footer_new .dop_footer_new_in .dfn_title {
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.dfn_desc > a,
.dfn_desc > span {
  display: block;
  margin-bottom: 10px;
}
.dop_footer_new a.def:hover {
  color: rgba(31, 31, 31, 0.8);
}
.dop_footer_new .btn_cursor {
  cursor: pointer;
  transition: 0.2s;
}
.dop_footer_new .btn_cursor:hover {
  color: rgba(31, 31, 31, 0.8);
}
.main_footer .foot_info_map_wrap {
  position: relative;
  margin-top: -180px;
  margin-bottom: 0px;
}

.main_footer .dop_foot {
  position: relative;
  padding-top: 50px;
}
.main_footer .dop_media_foot {
  font-size: 18px;
  margin-bottom: 25px;
}

.main_footer .back_robots_dark {
  margin-bottom: 50px;
}

.main_footer .foot_info_wrap {
  position: absolute;
  top: 7%;
  left: 0px;
  height: 86%;
  z-index: 1;
}

.main_footer .foot_info {
  padding: 25px;
  background-color: rgb(255, 255, 255);
  box-shadow: 6px 7px 90px 0px rgba(2, 2, 2, 0.1);
  height: 100%;
  border-bottom: 7px solid #e24347;
}
.main_footer .foot_info h5 {
  font-size: 36px;
  text-transform: none;
  margin-top: 0px;
}
.main_footer .foot_info p {
  font-size: 21px;
  line-height: 1.2;
}
.main_footer .foot_info p.small {
  font-size: 18px;
}
.main_footer .foot_info .socs_block {
  margin-top: 13px;
}
.main_footer .foot_info .f_soc {
  padding-left: 28px;
  background-size: 16px auto;
  background-position: 0px 50%;
  background-repeat: no-repeat;
  font-size: 20px;
  line-height: 25px;
  padding-bottom: 0px;
}
.main_footer .foot_info .f_soc.f_phone {
  background-image: url("../img/foot/icon_f_phone.svg");
}
.main_footer .foot_info .f_soc.f_mail {
  padding-bottom: 1px;
  background-image: url("../img/foot/icon_f_mail.svg");
}
.main_footer .footer_dop_links {
  line-height: 1.75;
  font-size: 18px;
}
.g-map-m_wrap {
  padding: 0px;
  border-radius: 0px 10px 10px 0px;
}
.g-map-m .gmap {
  height: 420px;
  width: 100%;
  box-shadow: 0px 10px 90px 0px rgba(2, 2, 2, 0.08);
}
.socs_footer {
  position: relative;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.socs_block {
  display: flex;
}

.socs_block .a_soc {
  color: transparent;
  text-decoration: none;
}

.socs_block .soc_icon {
  width: 50px;
  height: 50px;
  background-color: rgb(227, 67, 71);
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.36);
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50%;
  display: inline-block;
  background-position: 50% 50%;
  margin: 0px 10px;
}
.socs_block a:first-child .soc_icon {
  margin-left: 0px;
}
.socs_block a:last-child .soc_icon {
  margin-right: 0px;
}
.socs_block .soc_icon.soc_vk {
  background-size: 32px;
  background-image: url("../img/common/icon_soc_vk.svg");
}
.socs_block .soc_icon.soc_insta {
  background-size: 29px;
  background-image: url("../img/common/icon_soc_inst.svg");
}
.socs_block .soc_icon.soc_fb {
  background-size: 15px;
  background-image: url("../img/common/icon_soc_fb.svg");
}
.socs_block .soc_icon.soc_youtube {
  background-size: 27px;
  background-image: url("../img/common/icon_soc_youtube.svg");
}
.socs_block .soc_icon:hover {
  animation: starlight 0.86s infinite;
}
@media (max-width: 1199.95px) {
  .main_footer .foot_info p {
    font-size: 18px;
    line-height: 1.25;
    margin-bottom: 15px !important;
  }
  .dop_footer_new {
    font-size: 16px;
  }
  .dop_footer_new .small {
    font-size: 14px;
  }
  .socs_block .soc_icon {
    margin: 0px 5px;
  }
}
@media (max-width: 991.95px) {
  .bdb_wrap h1 {
    font-size: 42px;
  }
  .main_head_bdb .main_head_bdb_inner:before {
    background-size: auto 70%;
  }
  .main_head_bdb .main_head_bdb_inner .icon img {
    max-width: 135px;
  }
  .bdb_wrap .main_title h2{
    font-size: 36px;
  }
  .bdb_wrap .popup_new_order .popup__content{
    max-width: 100%;
  }
  .bdb_wrap .popup_new_order .popup__content-left{
    padding-right: 0px;
  }
  #popup__content-right.popup{
    width: 100%;
  }
  .bdb_wrap .popup_new_order .popup__content-ticket-content .title {
    font-size: 21px;
  }
  .bdb_wrap .popup_new_order .popup__content-ticket{
    height: auto;
  }
  .main_footer .dop_foot {
    padding-top: 65px;
  }
  .main_footer .dop_foot .dop_secret {
    padding: 15px 0px 15px 0px;
  }
  .main_footer .dop_foot .dop_secret .btns_block {
    margin-top: 13px;
    text-align: center;
  }
  .main_footer .dop_foot .dop_secret .btns_block .btn_default:before,
  .dop_foot .dop_secret .btns_block .btn_default:after {
    display: none;
  }
  .main_footer .dop_foot .dop_secret .info_block {
    text-align: center;
  }
  .dop_footer_new .dop_footer_new_in {
    column-gap: 50px;
    flex-wrap: wrap;
  }
  .dop_footer_new .dop_footer_new_in .dfn_col {
    width: calc(50% - 25px);
    margin-bottom: 50px;
  }
}
@media (max-width: 767.95px) {
  .g-map-m {
    display: none !important;
  }
  .dop_footer_new {
    margin-top: 15px;
    font-size: 17px;
  }
  .dop_footer_new .dop_footer_new_in {
    /* flex-direction: column; */
    text-align: center;
  }
  .dop_footer_new .dop_footer_new_in .dfn_col {
    margin-bottom: 40px;
  }
  .dop_footer_new .dop_footer_new_in .dfn_col.links {
    margin-bottom: 0px;
    margin-top: 50px;
  }
  .dop_footer_new .dop_footer_new_in .dfn_col:last-child {
    margin-bottom: 0px;
    width: 100%;
  }
  .dop_footer_new .small {
    font-size: 15px;
  }

  .main_footer .foot_info_wrap {
    position: relative;
    top: 0%;
    left: 0px;
    height: auto;
    margin-bottom: 50px;
  }
  .main_footer {
    margin-top: 150px;
  }
  .socs_block .soc_icon {
    margin: 0px 6px;
    width: 50px;
    height: 50px;
  }
  .socs_block .soc_icon.soc_fb {
    background-size: 14px;
  }
  .socs_block .soc_icon.soc_youtube {
    background-size: 28px;
  }
  .socs_block .soc_icon.soc_insta {
    background-size: 28px;
  }
  .socs_block .soc_icon.soc_vk {
    background-size: 29px;
  }
  .socs_footer {
    width: auto;
  }
  .main_footer .footer_dop_links {
    line-height: 1.2;
  }
  .main_footer .dop_foot .dop_secret .info_block p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
    position: relative;
  }
  .main_footer .dop_foot .dop_secret {
    padding: 15px 0px 15px 0px;
  }
  .main_footer .dop_foot .dop_secret .btns_block {
    text-align: center;
  }
  .main_footer .dop_foot .dop_secret .info_block {
    text-align: center;
  }
  .main_footer .dop_foot {
    padding-top: 50px;
  }
  .main_footer .dop_foot .dop_secret .btns_block .btn_default:before,
  .dop_foot .dop_secret .btns_block .btn_default:after {
    display: none;
  }
}
/* 18. Футер */

/*блок временных стилей */
.payment-system {
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.payment-system li {
  width: 64px;
  margin-right: 15px;
}
.payment-system li img {
  width: 100%;
}
/*блок временных стилей */

@media (max-width: 991.95px) {
  .new-head .center-part .title {
    font-size: 1.35em;
  }
  .new-head .center-part .subtitle {
    margin-top: 3px;
    font-size: 1.1em;
  }
}
@media (max-width: 767.95px) {
  .bdb_wrap h1 {
    font-size: 32px;
  }
  .bdb_wrap .popup__content-right .btns_block .btn{
    height: 56px;
  }
  .main_head_bdb .main_head_bdb_inner{
    padding: 20px;
  }
  .main_head_bdb .main_head_bdb_inner .icon img {
    max-width: 105px;
  }
  .main_head_bdb {
    padding-top: 80px;
  }
  .main_footer .foot_logo_wrap{
    text-align: center;
  }
  .bdb_wrap .popup__title_l_block {
    font-size: 32px;
  }
  #main_menu_fix {
    margin-top: 0px !important;
    display: block !important;
  }
  .bdb_wrap .btn_default{
    font-size: 14px;
  }
  .main_head_bdb .main_head_bdb_inner:before {
    background-size: auto 65%;
  }
  .new-head {
    height: 76px;
  }
  .new-head .logo {
    width: 85px;
    margin-left: -5px;
  }
  .new-head .logo img {
    max-width: 100%;
  }
  .new-head .center-part {
    padding-left: 0;
  }
  .new-head .center-part .title {
    font-size: 1.05em;
  }
  .new-head .center-part .subtitle {
    margin-top: 3px;
    font-size: 0.95em;
  }
  .new-head-item.btn {
    padding: 0;
    margin-right: -5px;
  }
}
@media (max-width: 576.95px) {
  .new-head-container {
    padding: 0 20px;
  }
  .new-head .worktime {
    display: none;
  }
  .modal_wrapper {
    padding: 75px 0 0;
  }
}
@media (max-width: 479.95px) {
  .input {
    margin-bottom: 24px;
  }
  .input.focused > input ~ label,
  .input.focused .autocomplete-wrap > input ~ label {
    top: 12px;
  }
  .input.email.focused label {
    top: 11px;
  }
  .input.comment.focused label {
    top: 13px;
  }
  .new_modal {
    width: 290px;
  }
  .new_modal .progress_line {
    margin: 20px 0;
  }
  .new_modal .modal_title .h2 {
    flex-direction: column;
  }
  .new_modal .modal_title .h2::before {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 15px;
    width: 48px;
    height: 48px;
  }
  #free_start .modal_title .h2 {
    display: flex;
    float: none;
  }
  #free_start .modal_title .h2::before {
    display: block;
    float: none;
  }
  .new_modal .modal_title br {
    display: none;
  }
}
