@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,600,700,700i|Roboto:300,400,500,700&subset=cyrillic');
.block-d {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fafafa;

}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  outline: none;
}
html{
  font-size: 1.6rem;
}
body{
  color: #000000;
  font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
/* для элемента input c type="checkbox" */
    .custom-checkbox {
      position: absolute;
      z-index: -1;
      opacity: 0;
    }

    /* для элемента label, связанного с .custom-checkbox */
    .custom-checkbox+label {
      display: inline-flex;
      align-items: flex-start;
      user-select: none;
    }

    /* создание в label псевдоэлемента before со следующими стилями */
    .custom-checkbox+label::before {
      content: '';
      display: inline-block;
      width: 1em;

      height: 1em;
      flex-shrink: 0;
      flex-grow: 0;
      border: 1px solid #DDAB53;
      border-radius: 0.25em;
      margin-right: 0.5em;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 50% 50%;
    }

    /* стили при наведении курсора на checkbox */
    .custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
      border-color: #ffe4bb;
    }

    /* стили для активного чекбокса (при нажатии на него) */
    .custom-checkbox:not(:disabled):active+label::before {
      background-color: #DDAB53;
      border-color: #DDAB53;
    }

    /* стили для чекбокса, находящегося в фокусе */
    .custom-checkbox:focus+label::before {
      box-shadow: 0 0 0 0.2rem rgba(255, 153, 0, 0.25);
    }

    /* стили для чекбокса, находящегося в фокусе и не находящегося в состоянии checked */
    .custom-checkbox:focus:not(:checked)+label::before {
      border-color: #DDAB53;
    }

    /* стили для чекбокса, находящегося в состоянии checked */
    .custom-checkbox:checked+label::before {
      border-color: #DDAB53;
      background-color: #DDAB53;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
    }

    /* стили для чекбокса, находящегося в состоянии disabled */
    .custom-checkbox:disabled+label::before {
      background-color: #e9ecef;
    }
    .ussr input[type="checkbox"] {
	width: 10px!important;
	position: absolute!important;
	left: 0!important;
}
main{
  max-width: 100vw;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
    margin-top: 0;
    margin-bottom: 1rem;
  font-family: 'Oswald', Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: capitalize;
}
h2{
  font-size: 30px;
}
img{
  max-width: 100%;
  border-style: none;
}
p{
  margin-bottom: 28px;
}
p:last-of-type{
  margin-bottom: 0;
}
p .fa{
  margin-right: 6px;
}
a,
a:focus,
a:visited{
  color: #337ab7;
  text-decoration: none;
    transition: all 0.2s ease-in-out;
}
a:hover{
  color: #23527c;
  text-decoration: none;
}

.order-container{
    margin: 20px auto;
    text-align: center;
}
.order{
    display: inline-block;
    background-color: #30d425;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
}
.order:hover,
.order:visited,
.order:active{
  color: #ffffff;
  background-color: #2bbe21;
  text-decoration: none;
}

.color1{
  color: #5ab839;
}
.highlights{
  background-color: #ffeda6;
}
.tal{
  text-align: left;
}
.tac{
  text-align: center;
}
.tar{
  text-align: right;
}
.costul2{
  display: none;
}
.video-container{
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.video-box{
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 57.25%;
}
.video-box iframe{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.list-check,
.list-def,
.list-num,
.list-num2{
  margin-top: 32px;
  margin-left: 0;
  margin-bottom: 32px;
}
.list-margin-left{
  margin-left: 30px;
}
.list-check li,
.list-def li,
.list-num li,
.list-num2 li{
  position: relative;
  margin-bottom: 20px;
  list-style: none;
}
.list-check li:before,
.list-def li:before{
  margin-right: 8px;
  content: "\f00c";
  font-family: "FontAwesome";
  color: #5ab839;
}
.list-def li:before{
  content: "\f064";
}
.list-num2{
  margin-bottom: 0!important;
  counter-reset: myCounter;
}
.list-num2 li{
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px!important;
  list-style: none!important;
}
.list-num2 li:before{
  counter-increment: myCounter;
  content:counter(myCounter);
  background-color: rgb(22,91,146);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #FFF;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  font-size: 18px;
}
.list-num2 li p{
  margin-bottom: 2px!important;
}
.list-num2 li strong{
  font-size: 18px;
}
.center{
  text-align:center;
}
.green_bg{
  background-color: #C6E2BA;
}
.flex-block{
  display: flex;
  justify-content: space-between;
}
.highlight {
  background-color: #ffeda6;
}
.top-block_center {
	max-width: 480px;
}


.block{}
.center-main-block{
  max-width: 1000px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
.left-main-block{
  width: 25%;
    padding-right: 30px;
}
.right-main-block{
  width: 75%;
}

.clubs-block {
	text-align: center;
}
i {
	font-style: italic;
	font-family: 'Rubik', sans-serif;
}
.arrow {
	color: #ff9900;
	font-size :40px;
	margin-top: -20px;
}

.block-1{}
.block-1 .center-main-block{}
.subHead{
  margin-top: 20px;
  margin-bottom: 22px;
  position: relative;
  font-family: 'Oswald';
  text-align: center;
}
.subHead:before{
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #dddddd;
  z-index: 1;
}
.subHead span{
  position: relative;
  display: inline-block;
  padding: 0 15px;
  background-color: #ffffff;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.3;
  z-index: 1;
  text-transform: capitalize;
}
.title{
  font-size: 36px;
  font-weight: 300;
}
.title strong{
  display: inline-block;
  min-width: 100%;
  font-size: 1.2em;
}
.block-1 h2{
  margin-top: 40px;
}
.main-image{
  margin: 24px 0;
}
.main-image img{
  display: inline-block;
  max-width: 500px;
  max-height: 400px;
}
.block-1 .author-image-block{
  max-width: 177px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}
.block-1 .author-image{
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.block-1 .author-image img{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 5px solid #ddab53;
}
.block-1 .author-name{
  display: block;
  font-family: 'Oswald','Roboto',sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  text-align: center;
}


.block-2{}
.block-2 .center-main-block{}
.block-2 h2{
  margin-top: 40px;
}
.otzuv{
  margin-top: 30px;
  padding: 20px;
  background-color: #ffffc1;
  border: 1px solid rgba(0,0,0,0.3);
  box-shadow: 3px 3px 5px rgba(0,0,0,0.4);
}
.punkt-block{
  flex-wrap: wrap;
}
.punkt-item{
  position: relative;
  margin-bottom: 40px;
}
.punkt-item .fa{
  position: absolute;
    top: 0;
    left: -60px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 1;
    font-size: 36px;
}
.punkt-item h3{
  margin-bottom: 20px;
  text-align: left;
  text-transform: capitalize;
}
.hidelist-container{
  padding-top:28px;
}
.hidelist p{}
.hidelist-part-switch{
  display: none;
}
.hidelist-part-switcher{
  opacity: 1;
/* text-decoration: underline; */
cursor: pointer;
transition: all 0.2s ease-in-out;
padding: 10px 15px;
border-radius: 20px;
background-color: rgb(22,91,146);
color: #fff;
}
.hidelist-part-switcher:hover{
  opacity: 0.8;
}
.hidelist-part{
  max-height: 0px;
  padding-top: 1rem;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out, opacity 1s ease-in-out;
}
.hidelist-part-switch:checked~.hidelist-part{
  opacity: 1;
  max-height: 400rem;
}



.block-3{
  padding-bottom: 0;
}
.block-3 .center-main-block{}
.block-3 h2{
  margin-top: 40px;
}
.price-block{
  flex-wrap: wrap;
}
.price-item{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  max-width: 49%;
  padding: 15px;
  font-size: 18px;
  
  text-align: center;
  border: 2px dashed #bfbfbf;
}
.price-head{}
.price-head ul{
  margin-bottom: 12px;
  text-align: left;
}
.price-head ul li{
  margin-bottom: 8px;
}
.price-head .price-title{
  margin-bottom: 16px;
  font-size: 24px;
	font-weight: 700;
}
.price-head .price-normal{
  margin-top: -10px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #5ab839;
}
.price-item .flex-block{}
.price-box{
  display: inline-block;
  width: 100%;
}
.price-box p{
  margin-bottom: 10px;
}
.price{
    font-size: 24px;
}
.price strong{
  color: inherit;
    text-decoration: underline;
    text-transform: uppercase;
}
.price-special{
  color: #DD0000;
  font-size: 20px;
}
.price-val{
  font-size: 20px;
}
.price-block .order-container{
  margin-bottom: 0;
}
.ussr{}
.ussr input{
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 7px 10px;
  font-size: 22px;
  line-height: 1.5;
  border-radius: 6px;
  border: 2px solid #DDAB53;
}
.ussr input[type=submit]{
  background-color: #30d425;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.ussr input[type=submit]:hover{
  background-color: #2bbe21;
  color: #ff9900;
  border-color: #2bbe21;
}


.click-image{
  cursor: pointer;
}
i.image-close{
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 200;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
i.image-close:hover{
  transform: scale(1.2);
}
.popup-container{
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.4s ease-in-out, top 0.4s linear;
}
.popup-container.active{
  top: 0;
  opacity: 1;
}
.popup-background{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  cursor: pointer;
}
.popup{
position: relative;
  z-index: 400;
  width: calc(100% - 4px);
  max-width: 460px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 2px solid #5ab839;
}
.popup .fa-close{
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 100;
  display: inline-block;
  color: #5ab839;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.popup .fa-close:hover{
  transform: scale(1.2);
}
.popup h2{

}
.popup h3{
  margin-top: 22px!important;
  font-family: 'Roboto'!important;
  font-weight: 500!important;
}
.popup p{
  margin-bottom: 14px;
}
.popup p:last-of-type{
  margin-bottom: 0;
}


.block-4{
  padding-top: 0;
  padding-bottom: 40px;
}
.block-4 .center-main-block{}
.block-4 h2{
  margin-top: 40px;
}
.testimonial{
  margin-bottom: 30px;
  padding: 20px;
  background-color: #FFFFC1;
  border: 1px solid rgba(0,0,0,0.3);
  box-shadow: 3px 3px 5px rgba(0,0,0,0.4);
}
.block-4 .author-block{
  margin-bottom: 40px;
}
.block-4 .author-image{
  max-width: 210px;
  margin-right: 20px;
  float: left;
}
.block-4 .author-image img{
  transform: scale(-1,1);
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: -2px 2px 5px rgba(0,0,0,0.4);
}
.block-4 .author-text{}
.block-4 .author-text ul{
  margin-top: 10px;
}




.faq-block{}
.faq-block p{}
.faq-block p:nth-of-type(odd){
  margin-bottom: 10px;
}
.faq-block p:nth-of-type(even){}
.faq{
  font-weight: bold;
  text-decoration: underline;
}



.block-contacts{
  margin-top: 30px;
  margin-bottom: 40px;
  font-size: 0.7rem;
}
.block-contacts .center-main-block{}
.block-contacts h2{
  font-size: 20px;
}
.block-contacts .flex-block{
  flex-wrap: wrap;
  justify-content: flex-start;
}
.contact-box{
  display: flex;
  align-items: flex-start;
  width: 49%;
  margin-right: 1%;
  margin-top: 30px;
}
.contact-image{
  min-width: 34px;
  width: 34px;
  margin-right: 12px;
}
.contact-image.fa{
  line-height: 34px;
  font-size: 34px;
}
.contact-text{}



.block-footer{
  padding: 30px 0;
  background-color: #f3f3f3;
  color: #000;
font-size: 16px;
}
.block-footer .center-main-block{
  background-color: transparent;
  padding: 0;
  border: none;
}
.block-footer .flex-block{}
.block-footer .footer-top{
  justify-content: flex-start;
}
.block-footer ul{
  display: flex;
  align-items: center;
  margin-bottom: 0.47rem;
}
.block-footer ul li{
  margin: 0 0.35rem;
  list-style: none;
}
.block-footer a{
  opacity: 0.8;
  color: #000;
}
.block-footer a:hover{
  opacity: 1;
  text-decoration: none;

}








@media screen and (max-width: 1000px){
  .flex-block{
    flex-wrap: wrap;
  }
  .left-main-block{
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .right-main-block{
    width: 100%;
  }
  .order{
    max-width: 100%;
    margin-bottom: 20px;
    width: 100%;
  }
  .punkt-item{
    max-width: 100%;
    padding-left: 0;
  }
  .punkt-item .fa{
    left: 0;
  }
  .punkt-item h3{
    padding-left: 60px;
  }
  .price-item{
    max-width: 100%;
  }
  .testimonial{
    max-width: 100%;
  }
  .contact-box{
    width: 49%;
  }
.top-block_center {
	max-width: 100%;
}
}
@media screen and (max-width: 800px){
  footer{
    text-align: center;
  }
}
@media screen and (max-width: 700px){
  h2{
    font-size: 25px;
  }
  .costul2{
    display: inline-block;
  }
  .costul1{
    display: none;
  }
  div.container{
    max-width: 100vw;
  }
  .subHead span{
    font-size: 16px;
  }
  .title{
    font-size: 28px;
  }
  .main-image img{
    max-width: 100%;
  }
  i.image-close{
    display: none;
  }
  .block-4 .author-image{
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    float: none;
  }
  .block-footer .flex-block{
    justify-content: center;
  }
  .menu-top{
    justify-content: center;
  }
  .menu-top_item{
    padding: 5px 5px;
    font-size: 14px;
  }
  .menu-top_item:nth-of-type(1){
    border-left: none;
  }
  .menu-top_item .fa{
    display: none;
  }
  .contact-box{
    width: 100%;
  }
}

@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css?family=Oswald:300,400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");
.timer-container{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  min-width: 100vw;
  background: #ffffff;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  z-index: 999;
}
.timer-box{
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}
.timer-box .timer-description{
  padding-right: 10px;
}
.timer-box div.cd_timer{
  margin: 0 5px!important;
  font-size: 4px!important;
}
.timer-box .cd_text{
  display: none!important;
}
.join-text {
	padding-left: 30px;
	position: relative;
	padding-bottom: 0;
	margin-bottom: 10px!important;
}
.join-num {
	border: 2px solid #cc0000;
	border-radius: 50%;
	font-size: 20px;
	color: #cc0000;
	width: 25px;
	height: 25px;
	display: inline-block;
	text-align: center;
	line-height: 20px;
	position: absolute;
	left: 0;
	top: 2px;
}
.join-but {
	display: block;
	max-width: 220px;
	margin: 0px auto 20px;
	animation: rocking 2s infinite;
        animation-timing-function: ease;
    animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
    transition: .2s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: 300!important;
    text-align: center;
    color: #fff;
}
@keyframes rocking{0%{transform:rotate(0deg)}25%{transform:rotate(0deg)}50%{transform:rotate(2deg)}75%{transform:rotate(-2deg)}100%{transform:rotate(0deg)}}
.join-but:hover{animation:none !important}
.join-but.tg {
color: rgb(48, 99, 211);
font-weight: 600;
background-color: rgb(255, 255, 255);

}
.join-but.tg {
	background: #0088cc; color: #fff;
}
.join-but.yt {
	background: #c4302b; color: #fff;
}
.join-but.ig {
	background: #833ab4; color: #fff;
}
.join-but.fb {
	background: #3b5998; color: #fff;
}
.nav a {
  text-decoration: none;color: #fff;
}
.popup-subtitle {
	text-align: center;
	font-weight: 700;
	
	font-size: 30px;
	line-height: 34px;
	margin-bottom: 20px;
}
.popup-flex {
	display: flex;
	justify-content: space-between;
}
.image-text {
	line-height: 26px;
	font-size: 18px;
	margin-left: 0px; 
}
.logonav img {
    height: 40px!important;
    margin-bottom: 0!important;
}
.nav a:hover {
	color: #fff!important;
}
.nav {
font-size: 16px;
background: #ff9900;
color: #fff;
padding-top: 3px;
}

.nav ul {
  background: darkorange;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.nav li {
background: #ff9900;

    display: block;
    float: left;
    padding: 1rem;
    position: relative;
    text-decoration: none;
  transition-duration: 0.5s;
}
  
.nav li a {
color: #fff;
}
.menu-top_item span {
	color: #fff!important;
}
.menu-top_item {
	border-color: #fff!important;
}

.nav li:hover,
.nav li:focus-within {

    cursor: pointer;
}

.nav li:focus-within a {
  outline: none;
}

.nav ul li ul {
    background: #fff;
    visibility: hidden;
  opacity: 0;
  min-width: 5rem;
    position: absolute;
  transition: all 0.5s ease;
  margin-top: 1rem;
    left: 0;
  display: none;
}

.nav ul li:hover > ul,
.nav ul li:focus-within > ul,
.nav ul li ul:hover,
.nav ul li ul:focus {
   visibility: visible;
   opacity: 1;
   display: block;
   position: absolute;
}

.nav ul li ul li {
    clear: both;
  width: 100%;
}
.menu-top{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;

  background-color: #ffffff;

  box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
}
.menu-top_item{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 14px;
  line-height: 1;
  border-left: 1px solid rgba(0,0,0,0.3);
  cursor: pointer;
}
.menu-top_item span{
  display: inline-block;
  color: #121212;
  font-weight: 300;
}
.menu-top_item:hover span{
  text-decoration: underline;
}
.ussr{}
.price-title {
    font-size: 24px;
    margin-top: 20px;
}
.ussr input{
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 7px 10px;
  font-size: 20px;
  line-height: 1.5;
  border-radius: 6px;
  border: 2px solid #DDAB53;
}
.ussr input[type=submit]{
  padding: 12px 10px !important;
background-color: #DDAB53;
color: #ffffff;
font-size: 20px !important;
font-weight: 600;
text-transform: uppercase;
box-shadow: rgba(0,0,0,0.1) 0px 5px 10px, rgba(0,0,0,0.2) 0px 0px 0px inset;
transition: all 0.3s ease-in-out;
}
.ussr input[type=submit]:hover{
  background-color: #FFC000 !important;
color: #ffffff !important;
border-color: #FFC000;
}
.popup-container{
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  min-height: 100vh;
  opacity: 0;
  overflow-y: auto;
  transition: opacity 0.4s ease-in-out, top 0.4s linear;
}
.popup-container.active{
  top: 0;
  opacity: 1;
}
.popup-background{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  cursor: pointer;
}
.popup{
position: relative;
  z-index: 400;
  width: 100%;
  max-width: 460px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 4px solid #ff9900;
  font-size: 18px;
}
.popup p {
    padding-bottom: 0!important;
}
.popup .fa-close{
  position: absolute;
  top: 6px;
  right: 12px;
  z-index: 100;
  display: inline-block;
  color: #ff9900;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.popup .fa-close:hover{
  transform: scale(1.2);
}
.popup h2{

}
.popup h3{
  margin-top: 22px!important;
  font-family: 'Roboto'!important;
  font-weight: 500!important;
}
.popup p{
  margin-bottom: 14px;
}
.popup p:last-of-type{
  margin-bottom: 0;
}
#header-outer {
    
    display: none!important;
}
.head-block {
    padding: 50px 0;
    color: #fff!important;
    text-align: center;
    font-weight: bold;
    font-size: 1.2em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.33);
}
.head-block .order {
    text-shadow: none;
}
.row {

    margin-right: 0px!important;
    margin-left: 0px!important;

}
.head-block h1 {

}
.head-block h2 {

}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  /*height: 100%;*/
  /*width: 100%;*/
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  width: 100%;
  max-width: 825px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
   padding: 0 10px;
}

.ibg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ibg img {
  display: none;
}
/*.page{*/
/*   position: absolute;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	top: 0;*/
/*	left: 0;*/
/*	display: flex;*/
/*	flex-direction: column;*/
    
/*}*/
/*.full-screen{*/
/*    position: relative;*/
/*	flex: 1 0 100%;	*/

/*}*/
/*.full-screen__bg{*/
/*        position: absolute;*/
/*		width: 100%;*/
/*		height: 100%;*/
/*		top: 0;*/
/*		left: 0;*/
/*		z-index: 1;*/
/*}*/

.title {
  font-weight: 700;
  font-size: 46px;
  text-align: center;
  margin: 24px 0px 24px 0px;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  line-height: 42px;
}

.subtitle {
  font-style: italic;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  padding: 0px 0px 24px 0px;
  line-height: 1.2;
}
.subtitle span {
  text-decoration: underline;
}

.text {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 28px;
}
.text p {
  margin: 0px 0px 0px 0px;
}
.main__text-italic{
    font-style: italic;
    padding: 20px 0;
}
.main__subtitle{
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    padding: 30px 0;
    
}
.name-list {
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  line-height: 28px;
  font-weight: 500;
}
.list{
    max-width: 795px;
}
.list li {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 1;
  position: relative;
  padding: 7px 0px 7px 30px;
}
.list li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: #DDAB53;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  left: 0;
}
.list li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
  border-top: 5px solid transparent;
  border-left: 10px solid #DDAB53;
  border-bottom: 5px solid transparent;
}
.name-list-center{
    color: #C61A1A;
    text-align: center;
    margin: 0 !important;
}
.attention {
  margin: 0px 0px 15px 0px;
}
.attention span {
  background-color: #ffeda6;
  font-family: "Roboto", sans-serif;
  font-size: 21px;
  line-height: 28px;
}

.propouse {
  font-family: "Roboto", sans-serif;
  font-size: 23px;
  line-height: 28px;
  font-weight: 500;
}

.page {

  padding: 0px 0px;
  margin: 0px auto;
}
.page__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .page__row {
    display: block;
  }
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0px 0px 0px 40px;
}
@media (max-width: 800px) {
       .wrapper {
           display: block;
       }
}
@media (max-width: 768px) {
  .main {
    padding: 0px 0px 0px 0px;
  }
}

.secondary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 165px;
          flex: 0 0 165px;
}
.secondary__image {
  height: 165px;
  width: 165px;
  border-radius: 50%;
  border: 5px solid #DDAB53;
  overflow: hidden;
}
.secondary__image img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .secondary__image_s {
    margin: 0px auto;
  }
}
.secondary__author {
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-weight: 300;
  font-size: 1.2rem;
  margin: 10px 0px 40px 0px;
}
@media (max-width: 768px) {
  .secondary {
    display: none;
  }
}
.secondary_s {
  display: none;
}
@media (max-width: 768px) {
  .secondary_s {
    display: block;
  }
}

.main__list-name {
  margin: 25px 0px 15px 0px;
}
.main__list-name_s {
  margin: 25px 0 15px;
}
.main__list_s li:last-child:before, .main__list_s li:last-child:after {
  top: 25%;
}

.main__subtitle_s {
  margin: 35px 0;
  border: 5px solid #DDAB53;
  padding: 20px;
  max-width: 860px;
}
.main__subtitle_s p{
    font-size: 21px;
    padding-bottom: 0px;
}
@media (max-width: 450px) {
  .main__subtitle_s {
    font-size: 20px;
    padding: 12px;
  }
}
.main__attention {
  margin: 50px 0px;
}
.main__attention-span {
  font-size: 20px;
  position: relative;
}
.main__attention-span_f{
  background-color: #ffeda6;
  font-family: "Roboto", sans-serif;
  font-size: 21px;
  line-height: 28px;
}
.main__attention-span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: red;
  left: 0%;
  top: 50%;
}
.main__propouse {
  margin: 0px 0px 20px 0px;
}
.main__numlist {
  counter-reset: myCounter;
  max-width: 795px;
}
.main__numlist li {
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  line-height: 28px;
  list-style: none;
  position: relative;
  padding: 0px 0px 0px 45px;
}
/*.main__numlist li span {*/
/*  font-size: 24px;*/
/*  position: relative;*/
/*  padding: 0px 0px 0px 10px;*/
/*}*/
/*.main__numlist li span:after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 120%;*/
/*  height: 2px;*/
/*  background-color: red;*/
/*  left: 0%;*/
/*  top: 50%;*/
/*}*/
.main__numlist li s {
  font-size: 25px;
  margin: 0px 0px 0px 2px;
}
.main__numlist li:before {
  content: "";
  position: absolute;
  counter-increment: myCounter;
  content: counter(myCounter);
  color: white;
  background-color: #DDAB53;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  left: 0;
  line-height: 30px;
  width: 30px;
  height: 30px;
}
.main__btn {
  background-color: #ff9900;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 20px;
  width: 100%;
  text-align: center;
  display: block;
  margin: 25px auto;
  color: #fff;
  font-size: 20px;
  max-width: 615px;
}
.main__btn:hover {
  background-color: #ff9830;
  text-decoration: underline;
  -webkit-box-shadow: 0 0 10px 1px #ff9830;
          box-shadow: 0 0 10px 1px #ff9830;
}
.main__btn:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 690px) {
.container, .orbit-wrapper .slider-nav, .post-area.standard-minimal.full-width-content .post .inner-wrap {

    max-width: 100%!important;
    padding: 0 10px!important;
}
}
@media (max-width: 350px) {
  .main__btn {
    padding: 10px;
  }
}
.main__text {
  font-weight: 500;
}
.main__about {
  font-size: 30px;
  text-align: center;
  margin: 40px 0px 24px 0px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  position: relative;
}
.guarantees__image {
  float: left;
  max-width: 165px;
  margin: 0px 35px 3px 0px;
}
.guarantees__image img {
  max-width: 100%;
}
@media (max-width: 400px) {
  .guarantees__image {
    max-width: 135px;
  }
}
@media (max-width: 350px) {
  .guarantees__image {
    max-width: 110px;
  }
}

.text-guarantees {
  line-height: 1.5;
  letter-spacing: 0.9;
}

.about-main__image {
  float: left;
  max-width: 210px;
  max-height: 210px;
  margin-right: 20px;
  margin-bottom: 15px;
  position: relative;
  top: 10px;
}
.about-main__image img {
  max-width: 100%;
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
  -webkit-box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.4);
          box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 500px) {
  .about-main__image {
    max-width: 150px;
    max-height: 150px;
  }
}
@media (max-width: 400px) {
  .about-main__image {
    max-width: 100px;
    max-height: 100px;
  }
}
.about-main__text span {
  font-weight: 700;
}
.about-main__span{
    font-weight: 700;
}

.contacts {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  text-align: center;
  padding: 40px 0 50px;
}
.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
@media (max-width: 650px) {
  .contacts__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
  }
}
.contacts__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding: 0 10px;
}
@media (max-width: 650px) {
  .contacts__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 0;
  }
}
.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 0px 30px 0px;
}
.contacts__icon {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}
.contacts__icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacts__info {
  padding: 0px 0px 0px 25px;
  max-width: 262px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.contacts__info a {
  color: #337ab7;
}
.contacts__info a:hover {
  text-decoration: underline;
}
@media (max-width: 400px) {
  .contacts__info a {
    font-size: 18px;
  }
  .about-main__image {

    float: none;
    max-width: 210px;
    max-height: 210px;
    margin: 0 auto 15px;
    position: relative;
    top: 10px;

}
}
@media (max-width: 350px) {
  .contacts__info {
    padding: 0px 0px 0px 15px;
  }
}

.gform_wrapper,
.gform_wrapper *{
  margin: 0!important;
  padding: 0px!important;
  max-width: 100%!important;
}
.gform_wrapper label{
  display: none!important
}
.gform_wrapper input{
  width: 100%!important;
  margin-top: 20px!important;
  padding: 7px 10px!important;
  background-color: #fff;
  color: #121212;
  font-size: 22px!important;
  line-height: 1.5;
  border-radius: 6px;
  border: 2px solid #DDAB53;
}
.gform_wrapper input[type=submit]{
  padding: 12px 10px!important;
  background-color: #DDAB53;
  color: #ffffff;
  font-size: 22px!important;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: rgba(0,0,0,0.1) 0px 5px 10px, rgba(0,0,0,0.2) 0px 0px 0px inset;
  transition: all 0.3s ease-in-out;
}
.gform_wrapper input[type=submit]:hover{
  background-color: #FFC000!important;
  color: #ffffff!important;
  border-color: #FFC000;
}

.text-little{
    font-size: 13px;
    padding: 20px 0 0 0;
}
.flex-block{
    display: flex;
    justify-content: space-between;
}
footer.new-footer{
    padding: 20px 20px 0;
}
.main__price{
    text-align: center;
    font-size: 27px !important;
    margin: 20px 0;
}
.main__row{
    display: flex;
}
.main__picture{
    flex: 0 1 500px;
    position: relative;
}
.main__picture img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
}
.main__list-row{
    flex: 1 1 auto;
}
.list-row{
    margin-left: 5px;
}
.full-screen-wrp{
    position: relative;
    top: -40px;
}
.full-screen{
    background: url('https://old.vladimirzakharov.com/wp-content/uploads/2020/03/Шапка-Отношения-3.jpg');
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
}
.full-screen__content{
    position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
}
.full-screen__first-text{
    color: #fff;
font-weight: 400;
    top: 25px;
    margin-bottom: 9em;
}
.full-screen__title{
    color: #fff;
    font-size: 75px;
    margin-bottom: 40px;
    line-height: 85px;
}
.full-screen__subtitle{
    color: #fff;
    margin-bottom: 4em;
}
.full-screen__lable{
    color: #fff;
    text-align: center;
font-weight: 400;
    bottom: 25px;
    
}
.otziv {
    background: #ffffc1;
    border: 1px solid #b2b287;
    padding: 20px;
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
margin-top: 20px;
font-size: 16px;
}

@media (max-width: 500px) {
    .popup-subtitle {
	font-size: 20px;
	line-height: 22px;
}
.image-text {
	line-height: 18px;
	font-size: 16px;

}
.popup {
    font-size: 16px;
padding: 8px;
}
       .full-screen__first-text{
    color: #fff;
font-weight: 400;
    top: 25px;
    margin-bottom: 3em;
}
.full-screen__title{
    color: #fff;
    font-size: 45px;
    margin-bottom: 40px;
    line-height: 55px;
}
.full-screen__subtitle{
    color: #fff;
    margin-bottom: 3em;
}
.main__row {

    display: block;

}
.main__picture img {

    position: static;
}
}
footer.new-footer .center-main-block{max-width: 825px;margin: 0 auto;}
.page__row {display: block;}
