@charset "UTF-8";

@font-face {
  font-family: "Bebas Neue Cyrillic";
  src: url("../fonts/Bebas_Neue_Cyrillic.ttf");
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'PFDinText';
  src: url("../fonts/PFDinTextCompProBold.eot");
  src: url("../fonts/PFDinTextCompProBold.eot") format("embedded-opentype"), url("../fonts/PFDinTextCompProBold.woff2") format("woff2"), url("../fonts/PFDinTextCompProBold.woff") format("woff"), url("../fonts/PFDinTextCompProBold.ttf") format("truetype"), url("../fonts/PFDinTextCompProBold.svg#PFDinTextCompProBold") format("svg");
  font-weight: bold;
}

@font-face {
  font-family: 'PFDinText';
  src: url("../fonts/PFDinTextCompPro-Regular.eot");
  src: local("☺"), url("../fonts/PFDinTextCompPro-Regular.woff") format("woff"), url("../fonts/PFDinTextCompPro-Regular.ttf") format("truetype"), url("../fonts/PFDinTextCompPro-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

body {
  background-color: #fff;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  font-size: 62.5%;
  color: #222222;
}

p {
  font-size: 1.4em;
  text-align: center;
  margin: 20px 0;
  line-height: 1.8em;
}

p b {
  font-weight: bold;
  font-size: 1.2em;
}

input[type="checkbox"].checkbox-hide {
  display: none;
}

.button {
  font-size: 38px;
  display: inline-block;
  color: #fff;
  position: relative;
  text-align: center;
  font-family: 'Bebas Neue Cyrillic';
  /*width: 100%;
  max-width: 300px;*/
  margin-top: 60px;
  -webkit-tap-highlight-color: transparent;
}

.button input[type="submit"],
.button a {
  display: block;
  position: relative;
  z-index: 10;
  border: none;
  background: rgba(206, 11, 11, 0.8);
  color: #fff !important;
  text-transform: uppercase;
  -webkit-transform: skew(0, -5deg);
  -ms-transform: skew(0, -5deg);
  transform: skew(0, -5deg);
  /*min-width: 300px;
  height: 100px;*/
  padding: 20px 30px;
  cursor: pointer;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*border: 6px solid #CE0B0B;*/
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.button:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #CE0B0B;
  left: 0;
  top: 0;
  z-index: 9;
  -webkit-transform: skew(0, -5deg);
  -ms-transform: skew(0, -5deg);
  transform: skew(0, -5deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button:hover:before,
.button:active:before {
  content: '';
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button:hover input[type="submit"],
.button:hover a,
.button:active input[type="submit"],
.button:active a {
  color: #d03d29;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button.inactive input[type="submit"],
.button.inactive a {
  /*border: 6px solid #b4b4b4;*/
  color: #fff !important;
  cursor: default;
}

.button.inactive:before {
  background-color: #b4b4b4;
}

.header {
  text-align: center;
  padding: 55px 0px;
  font-family: 'PFDinText';
}

.header .stages {
  padding: 60px 0 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .stages span {
  position: relative;
  z-index: 10;
}

.header .stage {
  font-size: 5.4em;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  padding: 10px 30px;
  position: relative;
  text-align: center;
}

.header .stage:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #b4b4b4;
  left: 0;
  top: 0;
  z-index: 9;
  -webkit-transform: skew(0, -5deg);
  -ms-transform: skew(0, -5deg);
  transform: skew(0, -5deg);
}

.header .stage.active:before {
  content: '';
  background-color: #d03d29;
}

.header .sep {
  width: 100%;
  max-width: 80px;
  height: 2px;
  background-color: #d03d29;
  -webkit-transform: skew(0, -5deg);
  -ms-transform: skew(0, -5deg);
  transform: skew(0, -5deg);
  margin: 0 20px;
}

.width-holder {
  width: 950px;
  margin: 0 auto;
}

.logo {
  width: 120px;
  padding: 5px 7px 4px;
  background: #000;
  display: inline-block;
}

h2 {
  font-size: 7.1em;
  color: #ce0b0b;
  text-transform: uppercase;
  text-align: center;
  margin: 10px 0;
  font-weight: bold;
  font-family: 'PFDinText';
}

.form {
  text-align: center;
  margin: 40px auto;
}

.form .form-holder {
  width: 100%;
  max-width: 584px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form .form-holder span {
  width: 100%;
  max-width: 277px;
  position: relative;
}

.form .form-holder span label {
  position: absolute;
  left: 0;
  bottom: -16px;
  font-size: 1em;
  color: red;
}

.form .form-holder span:last-child {
  /* max-width: 100%;*/
}

.form input[type="text"],
.form input[type="email"] {
  padding: 10px 12px;
  width: 100%;
  max-width: 277px;
  font-size: 1.4em;
  border: 2px solid #000000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
  outline: none;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus {
  border-color: #d03d29;
}

.form input[name="job"] {
  max-width: 100%;
}

.form p {
  font-size: 1.4em;
  margin: 10px;
}

label {
  font-size: 1.6em;
  margin: 5px 0 30px;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
}

.checkbox-input {
  position: relative;
  padding-left: 35px;
}

.checkbox-input:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: -2px;
  border: 2px solid #000;
}

input[type="checkbox"].checkbox-hide+.checkbox-input:after {
  content: '';
  width: 10px;
  height: 10px;
  background: #d03d29;
  left: 7px;
  top: 5px;
  position: absolute;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input[type="checkbox"].checkbox-hide:checked+.checkbox-input:after {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.home,
.re-record {
  display: block;
  text-transform: uppercase;
  color: #b4b4b4;
  font-size: 1.6em;
  text-decoration: none;
  margin: 120px 0 50px;
  position: relative;
  font-weight: bold;
}

.home span,
.re-record span {
  position: absolute;
  margin-left: -20px;
}

.re-record {
  margin: 0px 0px 30px;
}

.re-record span {
  position: absolute;
  margin-left: -27px;
  margin-top: -2px;
}

.stage-content {
  margin: 0 auto;
  text-align: center;
}

.stage-content2 {
  width: 100%;
  max-width: 660px;
}

.next-button {
  margin-top: 20px;
}

.record-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 10px;
}

.record-holder .record-button {
  margin: 20px 35px 20px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.record-holder .record-button>span {
  display: inline-block;
}

.record-holder .record-button .rec {
  padding: 10px;
}

.record-holder .record-button .stop {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.record-holder .record-button.active+.record-time {
  color: #d03d29;
}

.record-holder .record-button .playback {
  margin-left: 30px;
  position: relative;
}

.record-holder .record-button .playback .record-played {
  width: 30%;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.record-holder .record-button .playback .record-length path {
  fill: #b4b4b4 !important;
}

.record-holder .record-time {
  font-size: 3em;
  color: #b4b4b4;
  font-family: 'PFDinText';
}

.record-not {
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 30px 0 20px;
}

.record-not img {
  display: block;
  margin: 0 auto 25px;
}

.record-not .list-hold p {
  margin: 0;
}

.record-not .list-hold {
  padding-bottom: 20px;
}

.record-not p {
  margin: 0 0 20px;
  text-align: center;
  font-size: 14px;
  line-height: 19px;
  color: #000000;
  font-family: 'Open Sans', Arial, sans-serif;
}

.record-not ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.record-not ul li {
  font-weight: bold;
}

.path-rec {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  -webkit-animation: dash 60s linear forwards;
  animation: dash 60s linear forwards;
}

@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

textarea {
  padding: 10px 12px;
  width: 100%;
  font-size: 1.4em;
  line-height: 1.6em;
  border: 2px solid #000000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  height: 280px;
  resize: none;
}

textarea:focus {
  border-color: #d03d29;
}

.textarea-holder-writing {
  position: relative;
  width: 100%;
  max-width: 584px;
  margin: 0 auto 50px;
}

.textarea-holder-writing textarea+span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 1.4em;
  color: #b4b4b4;
}

.form .grammar-form-holder input[type="text"],
.form .grammar-form-holder input[type="email"] {
  max-width: 100%;
}

.form .grammar-form-holder label {
  margin: 0px 0 15px;
  font-weight: 400;
}

.form .grammar-form-holder label>span {
  color: #d03d29;
  font-weight: bold;
}

.stage-content5 h2 {
  margin-top: 120px;
}

.pause {
  padding: 1px;
}

.spiner {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  text-align: center;
  padding-top: 25%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 999;
}

@media (max-width: 1400px) and (min-width: 320px) {
  .stage-content5 h2 {
    margin-top: 20px;
  }
}

@media (max-width: 1200px) and (min-width: 320px) {
  .width-holder {
    width: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) and (min-width: 320px) {
  .header .stage {
    font-size: 2.4em;
    padding: 10px 20px;
  }

  .header .sep {
    margin: 0 5px;
  }

  h2 {
    font-size: 4em;
  }

  .header {
    padding: 40px 0 30px;
  }

  .button {
    font-size: 2.8em;
  }

  .header .stages {
    padding: 40px 0 0;
  }

  .form input[type="text"],
  .form input[type="email"],
  .form .form-holder span {
    max-width: 100%;
  }

  .record-holder .record-button .playback {
    -webkit-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
    margin-top: 10px;
    margin-left: 0;
  }

  .record-holder .record-time {
    position: absolute;
    bottom: 10px;
  }

  .record-holder {
    position: relative;
    padding-bottom: 30px;
  }

  .record-holder .record-button {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) and (min-width: 320px) {
  h2 {
    font-size: 3em;
  }

  p {
    font-size: 1.2em;
    margin: 10px 0;
  }

  .header {
    padding: 45px 0 10px;
  }

  .header .stages {
    padding: 20px 0 0;
  }

  .header .stage {
    padding: 8px 16px;
  }

  .form {
    margin: 10px auto;
  }

  .form input[type="text"],
  .form input[type="email"] {
    margin-bottom: 20px;
  }

  .form .form-holder span label {
    bottom: -5px;
  }

  label {
    font-size: 1.2em;
    text-align: left;
    line-height: 1.6em;
    margin: 5px 0 10px;
  }

  .form p {
    font-size: 1.3em;
  }

  .button {
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .home {
    margin: 50px 0 20px;
  }

  .re-record {
    margin: 0 0 20px;
  }

  textarea {
    height: 150px;
  }

  .textarea-holder-writing {
    margin: 0 auto 20px;
  }

  .form .grammar-form-holder label {
    margin-bottom: 10px;
  }

  .button input[type="submit"],
  .button a {
    padding: 10px 15px;
    font-size: 38px;
    min-width: 280px;
  }

}

/*new 06.08*/
.inp_chek {
  text-align: left;
}

/*test style**/

.send {
  white-space: nowrap;
  max-width: 575px;
  margin: 0 auto 40px;
}

.send-item {
  text-align: left;
  white-space: normal;
  display: inline-block;
  width: 48%;
  vertical-align: top;

}

.cols label:first-of-type {
  margin-bottom: 40px;
  line-height: 25px;
}

.send .send-item:first-child {
  margin-right: 4%;
}

label.cols-one {
  font-weight: normal;
  margin-bottom: 17px;
}

.send-text {
  font-family: 'Open Sans',
    sans-serif;
  font-size: 1.6em;
  margin: 5px 0 40px;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  white-space: normal;
  color: #222222;
}

.send label {
  line-height: 25px;
}

.send .checkbox-input:before {
  top: 0;
}

.send input[type="checkbox"].checkbox-hide+.checkbox-input:after {
  top: 7px;
}

@media (max-width:570px) {
  .send {
    white-space: none;
    width: 100%;
  }

  .send-item {
    text-align: center;
    white-space: normal;
    display: block;
    width: 100%;
    vertical-align: top;
  }

  .send .send-item:first-child {
    margin: 0;
  }

  .send-text,
  .send label {
    width: 100%;
    text-align: left;
    max-width: 245px;
    margin: 10px auto;
  }

  .cols label:first-of-type {
    margin-bottom: 14px;
  }

  body .form .send .send-item input[type="text"] {
    max-width: 276px;
  }
}

@media (max-width:479.98px) {


  .send-text {
    font-size: 1.2em;
  }

}

.error .checkbox-input:before {
  border-color: red;
}