@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700,900&display=swap&subset=cyrillic');

body{
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

.btn{
  height: 3em;
  line-height: 3em;
  border-radius: 1.5em;
  padding: 0 1.3em;
  font-size: 1.2rem;
  font-weight: 900;
}
.btn, .btn:focus, .btn:active
{
  box-shadow: 0;
}

.btn-primary{
  border: 0;
  /* background-image: -moz-linear-gradient( 6deg, rgb(255,0,0) 0%, rgb(217,0,0) 99%);
  background-image: -webkit-linear-gradient( 6deg, rgb(255,0,0) 0%, rgb(217,0,0) 99%);
  background-image: -ms-linear-gradient( 6deg, rgb(255,0,0) 0%, rgb(217,0,0) 99%); */
  background-color: #ff0000;
}
.btn-primary:hover, .btn-primary:focus{
  border: 0;
  background-color: #ff3333;
  box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):active:focus{
  box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):active{
  border: 0;
  background-color: #ff3333;
}

.btn-sm{
  font-size: 1rem;
}

h1, h2 {
    font-weight: 900;
}

h1{
  font-size: 3rem;
  margin-top: 1em;
  margin-bottom: 1em;}
h2{
  font-size: 2rem;
  margin-top: 1em;
  margin-bottom: 1em;
}


.nav-container{
  position: fixed;
  height: 100vh;
  background: #fff;
}
.nav-bg{
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 100vh;
  position: absolute;
  transition: opacity ease .3s;
}
.main-nav{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #ffffff;
  height: 100vh;
  width: 100vw;
}

.nav-container{
  z-index: 50;
  left: -100%;
  transition: all ease-in .3s;
}
.nav-container.opened{
  left: 0;
  transition: all ease .3s;
}
.nav-container.opened .nav-bg{
  width: 200vw;
  opacity: .3;
  visibility: visible;
}
.nav-container a{
  color: #000;
}
.nav-item{
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1.2em;
  text-align: center;
}
.nav-item:first-child{
  margin-top: 5em;
}
.nav__footer{
  margin-top: auto;
  background-color: #f00;
  color:#fff;
  font-size: 1rem;
  padding: 2em 0;
  text-align: center;
}
.nav__footer p{
  margin-bottom: 1em;
  font-size: .9rem;
}
.nav__footer a{
  color: #fff;
  text-decoration: none;
}
.nav-close{
  background: url("../img/close.svg") center;
  background-size: 100%;
  height: 35px;
  width: 35px;
  position: absolute;
  top: 30px;
  right: calc(50% - 18px);
  cursor: pointer;
}

.main-nav__socials{
  margin: .5em auto 0 auto;
  display: flex;
  justify-content: space-around;
  width: 200px;
}
.main-nav__social img{
  width: 35px;
}

.burger-button-wrapper{
  position: fixed;
  left: 0; bottom: 0;
  background: #fff;
  height: 70px;
  width: 100%;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom ease .3s;
}
.burger-button-wrapper.hided{
    bottom: -70px;
}

.burger-button, .burger-button:active, .burger-button:focus {
  background: url('../img/burger_red.svg');
  background-position: center;
  background-repeat: no-repeat;
  height: 70px;
  width: 70px;
  outline: none;
  border: none;
  padding: 0;
  /* position: absolute; */
}
.menu-logo{
    width: 43px;
    height: 36px;
    margin-left: 20px;
}
.btn.form-link{
    border-radius: 6px;
    font-size: 1.125rem;
}

.teaser{
  display: flex;
  flex-direction: column;;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5em;
  height: 100%;
}
.teaser-logo img{
  max-width: 100%;
}
.teaser-name{
  margin-top: 1.1em;
  font-weight: 900;
  font-size: 1.4rem;
  text-align: center;
}
.teaser-desc{
  font-size: 1.1rem;
}

.tiser__horisontal{
  flex-direction: column;
}
.tiser__horisontal .teaser-name{
  margin-top: 0;
}
.tiser-content{
  margin: 3em 0 0 0px;
  text-align: center;
  max-width: 400px;
}


.photo-slider-wrapper{
  padding: 0;
}
.photo-slider{
  margin: 1em 0 0 0 ;
  position: relative;
}
.photo-slider a{
  text-align: center;
}
.photo-slider-wrapper .next-button, .photo-slider-wrapper .prev-button,
.mobile-slider .next-button, .mobile-slider .prev-button
{
  display: block;
  position: absolute;
  top: 0;
  cursor: pointer;
  width: 60px;
  height: 100%;
  background-image: url('../img/arrow.svg');
  background-repeat: no-repeat;
  background-size: 30px;
  z-index: 2;
}
.photo-slider-wrapper .prev-button{
  left: 0;
  background-position: center right;
}
.photo-slider-wrapper .next-button{
  background-position: center right;
  transform: rotate(180deg);
  right: 0;
}

.photo-slider a{
  position: relative;
  padding: 5px;
  display: block;
}
.photo-slider img{
  max-width: 100%;
  border-radius: 10px;
}

.form-row{
  padding-bottom: 0em;
}

.form-group {
    margin-bottom: 0;
}
.control-label{
    font-size: 1rem;
    line-height: 1.1em;
}
.form__h2{
    font-size: 2rem;
    margin-top: 3em;
    margin-bottom: 1.6em;
}

.form-control, .form-control:focus{
  background-color: #FAFAFA;
  border-radius: 6px;
  border: 1px solid #EEEEEE;
  color: #000000;
  padding: 10px;
  font-size: 1rem;
}
.form-control:focus{
  box-shadow: 0 0 0 0.05rem #dddddd;
}

.row.mobile-slider{
  display: block;
  position: relative;
}

.mobile-slider .prev-button{
  left: 0;
  background-position: center right;
}
.mobile-slider .next-button{
  background-position: center right;
  transform: rotate(180deg);
  right: 0;
}
.breadcrumb{
  background-color: transparent;
}
.breadcrumb-item a{
  color:#ff0000;
}
.breadcrumb-item+.breadcrumb-item::before{
  content: "|";
}
h1+nav{
  margin-top: -4em;
  margin-bottom: 2em;
}
.video-label{
  color: #ff0000;
  text-align: center;
  font-weight: 900;
  margin: .8em 0 1em 0;
}
iframe{
  max-width: 100%;
}

@media (min-width: 768px) and (max-width: 992px){
  .video-wrapper iframe{
    width: 720px;
    height: 408px;
  }
}

.card{
  border: 0;
  margin-top: 10px;
}
.card h2,.card h3{
  margin: 0;
  text-decoration: none;
}
.card-header{
  background-color: #fdf6b5;
  border: 0;
  border-radius: 0;
}
.card-header .btn-link:hover, .card-header .btn-link{
  font-size: 1.2rem;
  height: auto;
  line-height: 1.5em;
  padding: .75em 0em;
  color: #000;
  text-decoration: none;
}

.title-image{
  width: 100%;
  margin-bottom: 2em;
}

.photo-slider{
  margin-bottom: 1em;
}
.table{
  border-spacing: 3px;
  border-collapse: separate;
}
.table thead th{
  font-weight: 900;
  background-color: #f9e20b;
  border-bottom: 0;
}
td,th,tr, .table td, .table th{
  border: 0;
  border-top: 0;
  font-size: 1rem;
  border-radius: 3px;
  padding: 1em .5em;
}
td,.table td{
  background-color: #fffcdd;
}
th,.table th{
  background-color: #fff9b8;
  font-weight: normal;
}
.table th.bg-red, th.bg-red, .bg-red{
  background-color: #ff0000;
  color: #fff;
}
.rub{
  border-bottom: 1px solid;
  line-height: .45em;
  display: inline-block;
  width: 0.5em;
}
.red-cross-out{
  position: relative;
  margin-right: .6em;
}
.red-price{
  font-weight: bold;
  color: #ff0000;
}
.red-cross-out::before{
  content:'';
  width:100%;
  height:3px;
  position:absolute;
  display:block;
  background:red;
  transform: skew(0deg,-20deg);
  left:0;
  top:50%;
}

.ui-datepicker-calendar th{
  font-size: 1rem;
}
.photo-h1{
  font-size: 2.52rem;
  margin-bottom: 1.5em;
}
.photo-album{
  margin-bottom: 30px;
}
.photo-album img{
  border-radius: 10px;
  max-width: 100%;
}
.photo-album a{
  display: block;
  position: relative;
}
.photo-album a::before{
  border-radius: 10px;
  content: '';
  display: block;
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  background-color: #000000;
  opacity: .5;
}
.photo-album_desc{
  position: absolute;
  top:0;left:0;right:0;bottom:0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.photo-album__name{
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  width: 100%;
  font-size: 2rem;
  line-height: 1.2em;
  margin-bottom: 0;
}
.photo-album__more{
  color: #fff600;
  font-size: 1.2rem;
}
.photo-album-item{
  margin-bottom: 30px;
}
.photo-album-item img{
  border-radius: 10px;
  max-width: 100%;
}
.help-block-error{
  color: #ff0000;
  font-size: 1rem;
}

.grecaptcha-badge{
  display: none;
}

a, a:hover{
  color: #000000;
}

.burger-button-wrapper_social{
  display: none;
}
.ui-datepicker-calendar{

}
.ui-datepicker-header.ui-widget-header{
    border: none;
    background: #FFFFFF;
    border-radius: 6px;
    font-family: inherit;
}
.ui-datepicker-calendar thead th, .ui-datepicker-calendar tbody td,
.ui-datepicker-calendar tbody td a,
td a.ui-state-default, .ui-widget-content a.ui-state-default,
.ui-widget-header .ui-state-default, .ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active{
    background: #fff;
    border: none;
    font-size: .9rem;
    line-height: 2em;
    text-align: center;
}
.ui-datepicker td span, .ui-datepicker td a.ui-state-default.ui-state-active{
    background: #f00;
    color: #fff;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover,
.ui-datepicker a.ui-datepicker-next-hover {
    border: none;
    background: #fff url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
    right: 2px;
    top: 2px;
}
.ui-datepicker a.ui-datepicker-prev-hover{
    border: none;
    background: #fff url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
    left: 0px;
    top: 2px;
}

.ui-datepicker a.ui-datepicker-next span{
    background-position: -32px 0;
}
.ui-datepicker a.ui-datepicker-prev span{
    background-position: -96px 0;
}
.form-group .btn-primary{
    border-radius: 6px;
    font-size: 1.125rem;
    margin-top: 2em;
    width: 100%;
}
#lead-form textarea.form-control:focus{
    height: auto;
}

.private-policy{
    font-size: 0.875rem;
}
.private-policy a{
    color: #f00;
}

.btn_footer-nemu{
  padding: 0 0.9em;
  max-width: calc(100% - 150px);
}



.bordered-row{
  border: 2px solid #FF6200;
  border-radius: 16px;
  padding: 30px !important;
  font-size: 1.375rem;
  margin-bottom: 100px;
}
.bordered-row h3{
  font-size: 2rem;
  color: #FF6200;
  text-align: center;
  margin-bottom: 20px;
}
.bordered-row p{
  margin-bottom: 20px;
}
.bordered-row ul{
  padding-inline-start: 21px;
}

@media (max-width: 1199px){
    #jivo-iframe-container, body>jdiv>jdiv>jdiv{
        transform: translateY(-70px);
    }
}


@media (min-width: 576px){
  .photo-h1{
    font-size: 3rem;
    margin-bottom: 1em;
  }
  .btn{
    font-size: 1.5rem
  }
  .btn-sm{
    font-size: 1.1rem;
  }

  .main-nav{
    width: auto;
  }
  .nav-close{
    top: 60px;
    right: 60px;
  }
  .nav-item{
    padding: 0 3em;
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 1em;
    text-align: left;
  }
  .nav-item:first-child{
    margin-top: 2em;
  }
  .main-nav__social img{
    width: 60px;
  }
  .main-nav__socials{
    margin: 2em 0 0;
    justify-content: space-around;
    padding: 0;
    width: auto;
  }
  .nav__footer{
    font-size: 1rem;
    padding: 3em 5em;
    text-align: left;
  }
  .nav__footer p{
    margin-bottom: 1em;
    font-size: 1rem;
  }
  .main-nav__socials{
    justify-content: space-around;
  }
  .form-control, .form-control:focus{
      height: calc(1.5em + 1rem + 2px);
  }
  .form-control::placeholder{
      color: #C9C9C9;
  }
  .burger-button-wrapper, .burger-button, .burger-button:focus
  {
  }
  .card-header .btn-link:hover, .card-header .btn-link {
    font-size: 1.7rem;
    padding: .75em 1.3em;
  }
  .form-group .btn-primary{
      width: auto;
  }
  .btn_footer-nemu{
    padding: 0 1.3em;
  }
  
}

@media (min-width: 768px){
  .btn{
    font-size: 1.2rem;
  }
  .btn-sm{
    font-size: 1rem;
  }

  .nav__footer{
    font-size: 1rem;
  }
  .teaser-name{
    font-size: 1.5rem;
  }
  .tiser__horisontal{
    flex-direction: row;
    justify-content: flex-start;
    margin-left: 30px;
  }
  .tiser__horisontal .teaser-name{
    margin-top: 0;
    text-align: left;
  }
  .tiser__left .tiser-content{
    margin: 0 50px 0 0;
  }
  .tiser__horisontal .tiser-content{
    flex-basis: 70%;
  }
  .tiser__left{
    flex-direction: row-reverse;
    margin-right: 30px;
    margin-left: 0px;
  }
  .tiser-content{
    margin: 0 0 0 50px;
    max-width: auto;
    text-align: left;
  }
  .tiser__left .teaser-name{
    text-align: right;
  }
  .tiser__left .teaser-desc{
    text-align: right;
  }
  .row.mobile-slider{
    display: flex;
  }
  h2{
    font-size: 4rem;
  }
  h2{
    font-size: 3rem;
  }
  .table{
    border-spacing: 10px;
    border-collapse: separate;
  }
}

@media (min-width: 992px){
  .btn{
    font-size: 1.8rem;
  }
  .btn-sm{
    font-size: 1.2rem;
  }

  .teaser-name{
    font-size: 2rem;
  }
  .teaser-desc{
    font-size: 1.2rem;
  }
  .form-section{
    /* background: url('../img/man3_full.png') calc(70vw) 50px no-repeat;
    background-size: 40vw; */
  }
  td,th,tr, .table td, .table th{
    font-size: 1.4rem;
  }
  .ui-datepicker-calendar th{
    font-size: 1rem;
  }
  .form-section{
    background: url('../img/man3.png') center bottom no-repeat;
    background: url('../img/man4.webp') center bottom no-repeat;
    background-size: auto ;
    padding-bottom: 330px;
  }
}

@media (min-width: 1200px){
  .container {
    max-width: 1140px;
  }
  .container-section{
    margin-left: 96px;
  }
  .burger-button-wrapper{
    display: block;
    background-color: #ff0000;
    height: 100vh;
    width: 96px;
    left: 0; top: 0;

  }
  .burger-button, .burger-button:active, .burger-button:focus {
    background: url('../img/burger.png') center no-repeat;
    height: 96px;
  }
  .btn{
    font-size: 2rem;
  }
  .btn-sm{
    font-size: 1.2rem;
  }

  .nav-item{
    font-size: 2rem;
  }
  .nav__footer{
    font-size: 1.4rem;
  }


  .form-control, .form-control:focus{
    padding: 0.6em;
    font-size: 1.125rem;
  }
  .form-row{
    padding-bottom: 0em;
  }
  .form-section{
    background: url('../img/man3.png') center bottom no-repeat;
    background: url('../img/man4.webp') center bottom no-repeat;
    background-size: auto ;
    padding-bottom: 330px;
  }

  .burger-button-wrapper_social{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%
  }
  .burger-button-wrapper_social>.main-nav__social{
    margin-bottom: 15px;
  }
  .burger-button-wrapper, .burger-button, .burger-button:focus{
      width: 96px;
  }
  .menu-logo{
      display: none;
  }
  .form-link{
      display: none;
  }
}


@media (min-width: 1700px){
  /* .form-section{
    background: url('../img/man3.png') right bottom no-repeat;
    background-size: auto, 3839px ;
  } */
}
