*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0!important;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  color: #737272;
}
::-moz-placeholder { /* Firefox 19+ */
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  color: #737272;
}
:-ms-input-placeholder { /* IE 10+ */
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  color: #737272;
}
:-moz-placeholder { /* Firefox 18- */
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  color: #737272;
}
*:focus::-webkit-input-placeholder{
	color: transparent;
}
*:focus::-moz-placeholder {
	color: transparent;
}
*:focus:-ms-input-placeholder{
	color: transparent;
}
*:focus:-moz-placeholder{
	color: transparent;
}
.center{
  max-width: 1500px;
  min-width: 280px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrapper{
  overflow: hidden;
}
label{
  cursor: pointer;
}
h1, h2, h3, h4, h5, a, p, span, i, button{
  font-family: 'Oswald', sans-serif;
}
header{
  position: fixed;
  width: 100%;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 0px 6px rgba(0,0,0,0.3);
}
header .center{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
header .center .logo img{
  width: 50px;
  padding-top: 5px;
}
header nav{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 50%;
}
header nav a{
  color: #000;
  text-decoration: none;
  font-size: 16px;
  text-transform: uppercase;
  display: inline-block;
  padding: 30px 0 10px 0;
}
header nav a:hover{
  color: #df0408;
   -webkit-transition: .4s;
  transition: .4s;
  border-bottom: 3px solid #df0408;
}
.button_nav a{
  text-decoration: none;
  background-color: #ffa900;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 25px;
  border-radius: 5px;
  margin: 15px 0 10px 0;
  display: inline-block;
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: 0 0px 6px rgba(0,0,0,0.3);
}
.button_nav a:hover{
  background-color: #df0408;
  -webkit-transition: .4s;
  transition: .4s;
  box-shadow: 0 0px 10px rgba(0,0,0,0.5);
}
.menu_toggle{
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  transition: .4s;
}
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#df0408;
  stroke-width:5.5;
  stroke-linecap:round;
}
.ham3 .top {
  stroke-dasharray: 40 130;
}
.ham3 .middle {
  stroke-dasharray: 40 140;
}
.ham3 .bottom {
  stroke-dasharray: 40 205;
}
.ham3.active .top {
  stroke-dasharray: 75 130;
  stroke-dashoffset: -63px;
}
.ham3.active .middle {
  stroke-dashoffset: -102px;
}
.ham3.active .bottom {
  stroke-dasharray: 110 205;
  stroke-dashoffset: -86px;
}

.bg_video{
  width: 100%;
  max-height: 900px;
  overflow: hidden;
  position: relative;
  background-image: url('../img/bg_page_1_formobilvers.jpg');
  background-size: cover;
}
.bg_video video{
  width: 100%;
  min-width: 650px;
}
.page_1_video{
  position: relative;
}
.page_1_video:after{
  content: "";
  position: absolute;
  top: 0;bottom: 0px;
  right: 0;left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.block_title_page_1{
  position: absolute;
  top: 280px;
  right: 0;left: 0;
  z-index: 98;
  text-align: center;
}
.block_title_page_1 h1{
  color: #fff;
  font-size: 100px;
  text-transform: uppercase;
}
.block_title_page_1 h1 span{
  color: #ffa900;
  font-size: 40px;
  text-transform: uppercase;
  display: block;
  padding-left: 400px;
}
.button_main a{
  background-color: #ffa900;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 20px 40px;
  border-radius: 5px;
  margin-top: 40px; 
  display: inline-block;
  box-shadow: 0 0px 6px rgba(0,0,0,0.3);
  -webkit-transition: .4s;
  transition: .4s;
}
.button_main a.button_sale{
  background-color: #df0408;
  box-shadow: 0 0px 6px rgba(0,0,0,0.3);
  -webkit-transition: .4s;
  transition: .4s;
  position: relative;
  z-index:99;
}
.button_main a.button_sale:before{
    content:"";
    position: absolute;
    top: 0px; bottom: 0px; right: 0px; left: 0px;
    background-color: #df04084d;
    animation: pulse 2s infinite;
    z-index:9;
    border-radius: 5px;
}
@-webkit-keyframes pulse {
 0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
 }
 70% {
      -webkit-box-shadow: 0 0 0 20px rgba(204,169,44, 0);
 }
 100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
 }
}
@keyframes pulse {
 0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
 }
 70% {
      -moz-box-shadow: 0 0 0 20px rgba(204,169,44, 0);
      box-shadow: 0 0 0 20px rgba(204,169,44, 0);
 }
 100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
 }
}
.button_main a:hover{
  background-color: #df0408;
  box-shadow: 0 0px 10px rgba(0,0,0,0.5);
  -webkit-transition: .4s;
  transition: .4s;
}
.button_main a.button_sale:hover{
  background-color: #ffa900;
  box-shadow: 0 0px 10px rgba(0,0,0,0.5);
  -webkit-transition: .4s;
  transition: .4s;
}
 .page_2_block_contact{
   background-color: #df0408;
 } 
.page_2_block_contact .center{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 50px 0;
}
.par_block_contact{
  width: 24%;
  text-align: center;
  color: #fff;
  position: relative;
}
.par_block_contact h2{
  font-size: 14px;
  color: #ffa900;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 98;
  position: relative;
}
.par_block_contact p a{
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  z-index: 98;
  position: relative;
}
.par_block_contact p{
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  z-index: 98;
  position: relative;
}
.par_block_contact_img{
  position: absolute;
  top: -30px;right: 0;left: 0;
  text-align: center;
  z-index: 40;
}
.par_block_contact_img img{
  height: 140px;
}
.page_3_slider{
  padding: 70px 0;
}
.slider img{
  width: 100%;
  margin: 30px 0;

}
.slider_option_block{
  display: none;
}
.slider_block_special_offer_part{
  margin: 0 10px;
}
.slider_block_special_offer_part_2{
  margin: 10px 0;
}
.page_4_slider .slick-dots{
    display: none;
}
h3{
  color: #ffa900;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 15px;

}
.line{
  height: 2px;
  background-color: #737373;
  border-radius: 3px;
}
.page_4_about_bar{
  padding: 70px 0;
}
.page_4_about_bar p{
  font-weight: 500;
  text-align: justify;
}
.beverage_block{
  padding: 70px 0;
  text-align: center;
}
.beverage_block .block_addvatages p{
  color: #b80204;
  font-weight: 500;
}
.page_5_add{
  background-color: #df0408;
}
.block_addvatages{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 70px 0;
    text-align: center;
}
.par_block_addvatages{
  width: 24%;
  position: relative;
}
.block_addvatages p{
  text-transform: uppercase;
  color: #fff;
  z-index: 98;
  position: relative;
}
.par_block_addvatages_img{
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 40;
    }
    .par_block_addvatages_img img{
      height: 100px;
    }
.page_6_format{
  padding: 70px 0;
}
.block_format{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
}
h4{
  color: #fff;
  text-transform: uppercase;
  z-index: 98;
  position: absolute;
  top: 50%;right: 0;left: 0;
  font-size: 24px;
}
.par_block_format{
  width: 48%;
  position: relative;
  margin: 10px 0;
}
.par_block_format img{
  width: 100%;
}
.page_7_menu_title{
  padding: 70px 0 30px 0;
  background-color: #df0408;
}
.popular_all_tabs_bloks{
  position: relative;
  height: 350px;
}
.popular_all_tabs_bloks ul{
  -webkit-transform: translateX(-2000px);
  transform: translateX(-2000px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: .4s;
  transition: .4s;
  padding: 50px 0;
  position: absolute;
  top: 0; right: 0;left: 0;
}
.popular_all_tabs_bloks ul.active{
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
   -webkit-transition: .4s;
  transition: .4s;
}
.popular_all_tabs_bloks ul li{
  width: 48%;
  list-style: none;
}
.slider_block_1_part{
  background-color: #df0408;
}
.popular_tabs_btns{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transition: .4s;
  transition: .4s;
}
.popular_tabs_btns a{
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  width: 33.333%;
  text-align: center;
  padding: 20px 0;
  font-weight: 500;
}
.popular_tabs_btns a.active{
  background-color: #ffa900;
}
.popular_tabs_btns a:hover{
  background-color: #ffa900;
  -webkit-transition: .4s;
  transition: .4s;
}
.menu_block_part{
  border-bottom: 2px dotted #737373;
  position: relative;
}
.menu_block_part p{
  font-size: 20px;
  font-weight: 500;
  padding-top: 5px;
}
.menu_block_part span{
  position: absolute;
  right: 0; top: 2px;
  text-transform: uppercase;
  font-size: 24px;
  color: #ffa900;
  font-weight: 500;
}
h5{
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  padding-top: 15px;
}
.page_7_descrip p{
  font-size: 16px;
  font-weight: 500;
}
.page_7_descrip{
  padding-bottom: 70px;
}
.page_8_team{
  padding: 70px 0;
}
.slider_3_block{
  width: 30%;
  background-color: #df0408;
  text-align: center;
  padding-bottom: 20px;
  margin: 10px 10px 30px 10px;
}
.slider_3_block img{
  width: 100%;
}
.slider_3_block p{
  color: #fff;
  text-transform: uppercase;
  padding: 20px 0 0px 0;
  font-weight: 500;
  font-size: 20px;
}
.slider_3_block span{
  color: #ffa900;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
}
.page_9_reviews{
  padding: 70px 0;
  background-image: url("../img/bg_page_reviews.jpg");
  background-size: cover;
}
.slider_1{
  margin: 20px 0 20px 300px;
  position: relative;
}
.slider_1:after{
  content: "";
  position: absolute;
  left: -180px; top: -50px;
  height: 140px;
  width: 140px;
  background-image: url("../img/reviews_icon.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.slider_1 p{
  color: #fff;
  font-size: 18px;
  text-align: justify;
}
.slider_1 span{
  color: #ffa900;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 20px;
  display: inline-block;
  font-size: 20px;
}
.page_10_form{
  padding: 70px 0;
  text-align: center;
  background-image: url("../img/bg_page_form.jpg");
  background-size: cover;
  background-position: center;
}
.page_10_form p{
  color: #fff;
  font-size: 24px;
}
.page_10_form_block{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
}
.page_10_form_block_part{
  width: 49%;
}
.page_10_form_block_part input{
  width: 100%;
  border: none;
  height: 60px;
  margin: 10px 0;
  padding-left: 20px;
  border-radius: 10px;
}
.page_10_form_block_part textarea{
  width: 100%;
  border: none;
  height: 140px;
  margin: 10px 0;
  padding: 20px 0 0 20px;
  border-radius: 10px;
}
.form_btn{
  background-color: #ffa900;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  padding: 20px 70px;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0 0px 6px rgba(0,0,0,0.3);
  -webkit-transition: .4s;
  transition: .4s;
  border: none;
}
.form_btn:hover{
  background-color: #c40409;
  box-shadow: 0 0px 8px rgba(0,0,0,0.6);
  -webkit-transition: .4s;
  transition: .4s;
}
footer{
  padding: 70px 0 30px 0;
}
footer .center{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.footer_block{
  width: 19%;
  position: relative;
  text-align: center;
}
.footer_block img{
 height: 140px;
}
.footer_block_img {
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    text-align: center;
    z-index: 40;
}
.footer_block h2{
  position: relative;
  z-index: 98;
  color: #ffa900;
  font-size: 14px;
  text-transform: uppercase;
  padding-bottom: 10px;
  font-weight: 500;
}
.footer_block p{
  position: relative;
  z-index: 98;
  font-size: 18px;
  text-transform: uppercase;
}
.footer_block a{
  position: relative;
  z-index: 98;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
}
.footer_logo{
  margin-top: -30px;
}
.copy_page{
  padding: 10px 0;
}
.btn_call{
  display: none;
}

























.thank{
  font-size: 29px;
  color: #fff;
  display: none;
  font-family: 'Oswald', sans-serif;
  height: 200px;
  width: 320px;
  position: fixed;
  top: 0;bottom: 0;
  left: 0;right: 0;
  margin: auto;
  z-index: 101;
  font-weight: 700;
  text-align: center;
}

.popup{
  height: 373px;
  width: 320px;
  background-color: #df0408;
  position: fixed;
  top: 0;bottom: 0;
  left: 0;right: 0;
  margin: auto;
  z-index: 101;
  display: none;
  text-align: center;
}
.bg_popup{
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;bottom: 0;
  left: 0;right: 0;
  z-index: 100;
  display: none;
}
.close{
  width: 21px;
  height: 21px;
  font-family: 'Oswald', sans-serif;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url("../img/close.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.popup div.popup_title{
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  padding: 20px 0 0 0px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
.popup input{
  display: block;
  margin: 10px auto;
  width: 300px;
  height: 50px;
  border-radius: 6px;
  border: none;
  padding: 20px;
}
.popup textarea{
  display: block;
  margin: 10px auto;
  width: 300px;
  height: 100px;
  border-radius: 6px;
  border: none;
  padding: 20px;
}
.popup input:hover{
  box-shadow: 0 0 30px rgba(0, 0, 0, .30);
}
.popup button{
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
  font-size: 16px;
  background-color: #ffa900;
  border-radius: 6px;
  display: inline-block;
  display: inline-block;
  font-weight: 700;
  border: none;
  padding: 20px 112px;
  font-family: 'Oswald', sans-serif;
  -webkit-transition: .4s;
  transition: .4s;
}
.popup button:hover{
  background-color: #c40409;
  box-shadow: 0 0px 8px rgba(0,0,0,0.6);
  -webkit-transition: .4s;
  transition: .4s;
}

.btn_call a{
    position: absolute;
    width: 90px;
    height: 90px;
    color: #c40409;
    text-align: center;
    border-radius: 50%;
    right:5px;bottom: 5px;
    background-color:#ffa900;
    text-decoration: none;
    text-transform: uppercase;
    padding-top: 30px;
}
.btn_call a:before{
   content: "";
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: -5px;
    left: -5px;
    background-color: #ffa90057;
    animation: pulse 2s infinite;
    z-index: 9;
    border-radius: 50%;
}



.beverage_page_list{
    padding: 120px 0 70px 0;
}

.menu_pege_alcohol_list {
    position: relative;
}
.menu_pege_alcohol_list h1 {
    font-size: 30px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color:#ffa900 ;
}
.menu_pege_alcohol_list h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.menu_pege_alcohol_list span {
    font-size: 20px;
    position: absolute;
    right: 0;
}
.menu_pege_alcohol_list p {
    font-size: 18px;
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 2px dotted #ffa900;
    padding-right: 100px;
}























@media screen and (max-width: 1600px){
  .bg_video {
    max-height: 707px
    }
}

@media screen and (max-width: 1300px){
  .center{
    margin: 0 15px;
    padding: 0;
  }
  header nav{
    width: 60%;
  }
  .bg_video {
    max-height: 650px;
}
.block_title_page_1 h1{
  font-size: 80px;
}
.block_title_page_1 h1 span {
    font-size: 36px;
    padding-left: 289px;
}
.block_title_page_1 {
    top: 220px;
    }
}
@media screen and (max-width: 1200px){
  .bg_video {
    max-height: 550px;
}
.footer_block img {
    height: 100px;
}
.footer_block p{
  font-size: 16px;
}
.footer_block a{
  font-size: 16px;
}
.footer_block_img{
  top: -10px;
}
footer {
    padding: 40px 0 15px 0;
}
}
@media screen and (max-width: 1000px){
  .bg_video {
    max-height: 500px;
}
.block_title_page_1 h1{
  font-size: 60px;
}
.block_title_page_1 h1 span {
    font-size: 30px;
    padding-left: 190px;
}
.block_title_page_1 {
    top: 180px;
    }
    .par_block_contact_img img {
    height: 100px;
}
.par_block_contact_img{
  top: -15px;
}
.page_2_block_contact .center{
  padding: 25px 0 20px;
}
h3{
  font-size: 36px;
  padding-bottom: 0;
}
.menu_pege_alcohol_list h1 {
    font-size: 24px;
}
.menu_pege_alcohol_list h2 {
    font-size: 20px;
}
.menu_pege_alcohol_list p {
    font-size: 16px;
}
.page_3_slider, .page_4_about_bar, .page_6_format, .page_8_team, .page_9_reviews, .page_10_form{
    padding: 50px 0;
}
.page_7_descrip{
  padding-bottom: 50px;
}
.page_7_menu_title{
  padding-top: 50px;
}
.popular_tabs_btns a{
  font-size: 20px;
  padding: 15px 0;
}
.slider_1:after{
  height: 50px;
  width: 50px;
  left: -70px;
}
.slider_1{
  margin-left: 100px;
}
.footer_block p{
  font-size: 14px;
}
.footer_block a{
  font-size: 14px;
}
.footer_block h2{
  font-size: 12px;
}
}
@media screen and (max-width: 900px){
  .menu_toggle{
    display: block;
  }
  header nav{
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-top: 76px;
    background: #ffa900;
    padding: 20px;
    -webkit-transform: translateY(-1500px);
    transform: translateY(-1500px);
    -webkit-transition: .6s;
    transition: .6s;
    display: block;
    width: 100%;
    text-align: center;
  }
  header nav.active{
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: .6s;
    transition: .6s;
  }
  header nav a{
    display: block;
        padding: 10px 0 10px 0;
  }
  header nav a:hover{
    border: none;
  }
  .button_nav a{
    display: none;
  }
  .bg_video {
    max-height: 400px;
}
.block_title_page_1 h1{
  font-size: 46px;
}
.block_title_page_1 h1 span {
    font-size: 24px;
    padding-left: 140px;
}
.block_title_page_1 {
    top: 140px;
    }
    .button_main a {
    font-size: 14px;
    padding: 15px 30px;
    margin-top: 20px;
}
h4{
  font-size: 20px;
}
.form_btn{
  font-size: 14px;
}
.footer_block_email{
  display: none;
}
.footer_block{
  width: 25%;
}
.btn_call{
  display: block;
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 80px;
  width: 80px;
  z-index: 99;
   }
}
.btn_call img{
  width: 100%;
}
}
@media screen and (max-width: 800px){
  .par_block_contact {
    width: 50%;
    margin: 20px 0;
  }
  .page_2_block_contact .center {
    padding: 15px 0 0px;
}
h3{
  font-size: 30px;
}
.page_4_about_bar p{
  font-size: 14px;
}
.popular_tabs_btns a{
  font-size: 16px;
  padding: 10px 0;
}
.menu_block_part p{
  font-size: 16px;
}
.menu_block_part span{
  font-size: 20px;
}
.popular_all_tabs_bloks {
    height: 288px;
}
h5{
  font-size: 14px;
}
.page_7_descrip p{
  font-size: 12px;
}
.page_10_form p{
  font-size: 16px;
}
.page_10_form_block_part input {
    height: 50px;
    margin: 5px 0;
}
.page_10_form_block_part textarea {
    height: 110px;
    margin: 6px 0;
}
.page_10_form_block{
  padding: 10px 0;
}
.copy{
  font-size: 12px;
}
.par_block_contact p a{
  font-size: 13px;
}
.par_block_contact p{
  font-size: 13px;
}
.par_block_contact h2{
  font-size: 12px;
}
.par_block_contact_img img {
    height: 90px;
}
}
@media screen and (max-width: 750px){
  .bg_video {
    height: 365px;
}

.page_1_video video{
  display: none;
}
.slider_option_block{
  display: block;
}
.slider_block{
  display: none;
}
.slider_option img{
  width: 100%;
}
.block_addvatages p{
  font-size: 14px;
}
.par_block_addvatages_img img {
    height: 80px;
}
.block_addvatages{
  padding: 50px 0 20px 0;
}
h4{
  font-size: 18px;
}
.popular_all_tabs_bloks ul{
  display: block;
}
.popular_all_tabs_bloks {
    height: 440px;
}
.popular_all_tabs_bloks ul li {
    width: 100%;
    }
    .popular_all_tabs_bloks ul{
      padding-top: 30px;
    }
    .slider_3_block_app{
      display: none;
    }
    .slider_1:after{
      display: none;
    }
    .slider_1{
      margin-left: 0;
    }
    .slider_1 p{
      font-size: 16px;
    }
    .footer_block {
    width: 50%;
    margin: 10px 0;
}
footer {
    padding: 15px 0 15px 0;
}
.menu_block_part p{
  font-size: 16px;
}
h5{
  font-size: 14px;
}
.page_7_descrip p{
  font-size: 12px;
}
.menu_block_part span{
  font-size: 20px;
}
.par_block_contact p{
  font-size: 14px;
}
.par_block_contact h2{
  font-size: 12px;
}
.par_block_contact{
  width: 50%;
  margin: 20px 0;
}
.page_2_block_contact .center {
    padding: 5px 0 5px;
}
.page_4_about_bar p{
  font-size: 14px;
}
.page_10_form p {
    font-size: 16px;
}
.page_7_descrip {
    padding-bottom: 30px;
}
}
@media screen and (max-width: 600px){
  .par_block_format {
    width: 100%;
  }
  .popular_tabs_btns a {
    font-size: 14px;
    padding: 15px 5px;
}
.page_10_form_block_part{
  width: 100%;
}
.page_10_form_block_part input{
  border-radius: 5px;
}
.page_10_form_block_part textarea{
  border-radius: 5px;
}
.page_10_form_block_part input{
  padding-left: 10px;
}
.page_10_form_block_part textarea{
  padding: 10px 0 0 10px;
}
h3 {
    font-size: 30px;
}
.menu_pege_alcohol_list h1 {
    font-size: 20px;
}
.menu_pege_alcohol_list h2 {
    font-size: 18px;
}
.menu_pege_alcohol_list span {
    font-size: 16px;
}
.menu_pege_alcohol_list p {
    font-size: 16px;
}
.page_10_form_block_part input {
    height: 50px;
    margin: 5px 0;
}
.page_10_form_block{
  padding: 10px 0;
}
}
@media screen and (max-width: 500px){
  .block_title_page_1 h1{
  font-size: 36px;
}
.block_title_page_1 h1 span {
    font-size: 20px;
    padding-left: 103px;
}
.block_title_page_1 {
    top: 140px;
    }
    .button_main a {
    font-size: 12px;
  }
  .page_3_slider, .page_4_about_bar, .page_6_format, .page_8_team, .page_9_reviews, .page_10_form{
    padding: 40px 0;
}
.page_7_descrip {
    padding-bottom: 40px;
}
.page_7_menu_title{
  padding-top: 40px;
}
h4{
  font-size: 16px;
}
.page_10_form p{
  font-size: 14px;
}
.par_block_addvatages {
    width: 50%;
    margin: 25px 0;
}
.block_addvatages {
    padding: 29px 0 0px 0;
}
}
@media screen and (max-width: 400px){
h3{
  font-size: 24px;
}
.slider_1 p{
      font-size: 14px;
    }
    .form_btn{
  font-size: 12px;
}
.button_main a{
    padding: 14px 15px;
}
}
