@font-face {
  font-family: "Verdana";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local('Verdana Regular'), local('Verdana-Regular'),
  url("../fonts/verdana.woff2") format("woff2"),
  url("../fonts/verdana.woff") format("woff")
}

@font-face {
  font-family: "Geometria";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: local('Geometria Regular'), local('Geometria-Regular'),
  url("../fonts/geometria.woff2") format("woff2"),
  url("../fonts/geometria.woff2") format("woff")
}

@font-face {
  font-family: "Geometria";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: local('Geometria Medium'), local('Geometria-Medium'),
  url("../fonts/geometria-medium.woff2") format("woff2"),
  url("../fonts/geometria-medium.woff2") format("woff")
}

@font-face {
  font-family: "Geometria";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: local('Geometria Light'), local('Geometria-Light'),
  url("../fonts/geometria-light.woff2") format("woff2"),
  url("../fonts/geometria-light.woff2") format("woff")
}

@font-face {
  font-family: "Geometria";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: local('Geometria Bold'), local('Geometria-Bold'),
  url("../fonts/geometria-bold.woff2") format("woff2"),
  url("../fonts/geometria-bold.woff2") format("woff")
}

@font-face {
  font-family: "Geometria";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: local('Geometria Heavy'), local('Geometria-Heavy'),
  url("../fonts/geometria-heavy.woff2") format("woff2"),
  url("../fonts/geometria-heavy.woff2") format("woff")
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #f2f3f5;
  --red: #aa302e;
  --dark: #1d2a3c;
  --blue: #1d2a3d;
}

.petrov {
  background-color: var(--grey);
  font-family: "Geometria", "Arial", sans-serif;
  color: var(--dark);
  font-size: 24px;
  line-height: 28px;
  overflow: hidden;
  letter-spacing: 1.2px;
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1370px;
  padding: 0 15px;
  margin: 0 auto;
}

.title {
  font-size: 40px;
  line-height: 45px;
  font-weight: 900;
  color: var(--red);
  margin: 0 0 40px 0;
}

.title--white {
  color: var(--white);
}

.flex-container {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.text-bold {
  font-weight: 700;
}

.intro {
  background-image: url("../images/intro-background.png");
  width: 100%;
  height: 1000px;
  background-size: cover;
  background-position: center;
  -webkit-clip-path: polygon(0 0, 1920px 0, 1920px 1000px, 0 760px);
  clip-path: polygon(0 0, 1920px 0, 1920px 1000px, 0 760px);
  position: relative;
  color: var(--white);
  padding: 30px 0 0 0;
}

.intro__left {
  width: 280px;
}

.intro__picture {
  position: relative;
  margin: -10px auto 30px auto;
  width: 770px;
  z-index: 1;
}

.intro__picture:before,
.intro__picture:after {
  content: '';
  width: 397px;
  height: 526px;
  position: absolute;
  background-image: url("../images/intro-player.png");
  top: 70px;
  z-index: -1;
}

.intro__picture:before {
  left: -250px;
  transform: rotate(15deg);
  animation: player-move-left 2s ease-in-out;
}

.intro__picture:after {
  right: -250px;
  transform: rotate(-15deg) scale(-1, 1);
  animation: player-move-right 2s ease-in-out;
}

@keyframes player-move-left {
  from {
    left: -100px;
  }
  to {
    left: -250px;
  }
}

@keyframes player-move-right {
  from {
    right: -100px;
  }
  to {
    right: -250px;
  }
}

.intro__text {
  position: relative;
  z-index: 2;
}

.intro__text-main {
  width: 580px;
  text-align: center;
  margin: 0 auto;
  font-size: 28px;
  line-height: 32px;
  font-weight: 500;
}

.intro__text-main a {
  color: var(--white);
}

.intro__text-main a:hover {
  color: var(--blue);
  transition: 0.3s;
}

.intro__link {
  color: var(--white);
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 18px;
  line-height: 22px;
}

.task:after {
  content: '';
  width: 100%;
  height: 290px;
  background: url("../images/line.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -270px;
  left: 0;
}

.task {
  height: 950px;
  position: relative;
  background-image: url("../images/task-background.png");
  background-repeat: no-repeat;
  background-size: 1187px 563px;
  background-position: calc(100% + 100px) 100%;
}

.task__text {
  width: 50%;
}

.task__left,
.task__right {
  width: 490px;
}

.task__right {
  font-weight: 300;
}

.solution {
  margin: -200px 0 0 0;
  position: relative;
  padding: 290px 0 0 0;
  color: var(--white);
}

.solution:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 1920px;
  height: 290px;
  background: var(--blue);
  -webkit-clip-path: polygon(1920px 0, 0 280px, 0 290px, 1920px 290px);
  clip-path: polygon(1920px 0, 0 280px, 0 290px, 1920px 290px);
}

.solution:after {
  content: '';
  width: 1920px;
  height: 290px;
  background: url("../images/line.svg");
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(-1, 1);
}

.solution__wrapper {
  background: var(--blue);
  padding: 0 0 80px 0;
}

.solution__container {
  background: url("../images/solution-img.png");
  background-repeat: no-repeat;
  background-position: calc(50% - 200px) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.solution__title {
  text-align: right;
  width: 100%;
}

.solution__content {
  width: 650px;
  margin: 0 0 90px 0;
}

.solution__individual {
  text-align: right;
  font-weight: 700;
  margin: 0 0 40px 0;
}

.solution__manage {
  font-weight: 500;
  margin: 0 0 34px 0;
}

.solution__content .solution__manage {
  text-align: right;
}

.solution__list {
  padding: 0 0 0 70px;
}

.solution__item {
  margin: 0 0 20px 0;
}

.solution__bottom {
  align-items: flex-end;
  width: 100%;
}

.solution__right {
  width: 675px;
}

.solution__video {
  font-weight: 500;
  margin: 0 0 20px 0;
  text-align: right;
}

.solution__video-link {
  font-weight: 900;
  color: var(--white);
  text-decoration: underline;
}

.processes {
  padding: 100px 0 50px 0;
}

.processes__container {
  background: url("../images/process-background.png");
  background-repeat: no-repeat;
  background-position: calc(100% + 50px) 200px;
}

.processes__wrapper {
  max-width: 660px;
}

.processes__list {
  padding: 0 0 0 20px;
  margin: 0 0 45px 0;
}

.processes__item {
  margin: 0 0 20px 0;
}

.processes__text {
  font-weight: 300;
  max-width: 640px;
}

.fonts {
  padding: 100px 0 500px 0;
  background-color: var(--blue);
  color: var(--white);
  background-image: url("../images/fonts-background.png");
  background-repeat: no-repeat;
  background-position: right bottom;
}

.fonts__title {
  margin: 0 0 50px 0;
}

.fonts__subtitle {
  font-weight: 700;
  margin: 0 0 70px 0;
}

.fonts__text {
  text-transform: lowercase;
  margin: 0 0 10px 0;
}

.fonts__geometria {
  font-weight: 700;
  font-size: 80px;
  line-height: 82px;
  margin: 0 0 70px 0;
  color: var(--red);
}

.fonts__verdana {
  font-family: "Verdana", "Arial", sans-serif;
  font-size: 80px;
  line-height: 82px;
}

.colors {
  margin: -290px 0 0 0;
  position: relative;
  padding: 290px 0 0 0;
}

.colors:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 1920px;
  height: 290px;
  background: var(--grey);
  -webkit-clip-path: polygon(0 0, 1920px 280px, 1920px 290px, 0 290px);
  clip-path: polygon(0 0, 1920px 280px, 1920px 290px, 0 290px);
}

.colors:after {
  content: '';
  width: 1920px;
  height: 290px;
  background: url("../images/line.svg");
  position: absolute;
  top: -10px;
  left: 0;
}

.colors__container {
  padding: 100px 15px 0 15px;
}

.colors__title {
  text-align: right;
}

.colors__subtitle {
  text-align: right;
  color: var(--blue);
  font-weight: 700;
}

.colors__block-container {
  max-width: 950px;
}

.colors__block {
  background-image: url("../images/colors-background.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 814px;
  display: flex;
  align-items: center;
}

.colors__list {
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.colors__icon {
  fill: #c24244;
  margin: 0 0 20px 0;
}

.colors__item--blue .colors__icon {
  fill: var(--blue);
}

.colors__item--grey .colors__icon {
  fill: var(--grey);
}

.colors__item {
  color: var(--red);
}

.colors__item--blue {
  color: var(--blue);
}

.colors__item--grey {
  color: var(--grey);
}

.colors__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.colors__item-text {
  margin: 0 0 20px 0;
}

.future {
  padding: 0 0 70px 0;
}

.future__content {
  max-width: 1100px;
}

.future__text {
  margin: 0 0 20px 0;
}

.view {
  position: relative;
  padding: 290px 0 0 0;
}

.view--mobile {
  display: none;
}

.view:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 1920px;
  height: 290px;
  background: #c24244;
  -webkit-clip-path: polygon(0 0, 1920px 280px, 1920px 290px, 0 290px);
  clip-path: polygon(0 0, 1920px 280px, 1920px 290px, 0 290px);
}

.view:after {
  content: '';
  width: 1920px;
  height: 290px;
  background: url("../images/line.svg");
  position: absolute;
  top: -10px;
  left: 0;
}

.view__wrapper {
  background-color: #c24244;
}

.view__container {
  padding: 70px 15px 70px 15px;
}

.view__title {
  text-align: center;
  margin: 0;
}

.view__slider {
  width: 800px;
  margin: 0 auto 70px auto;
  position: relative;
}

.view__arrow {
  position: absolute;
  display: block;
  bottom: 200px;
  cursor: pointer;
}

.view__arrow--left {
  left: -200px;
}

.view__arrow--right {
  right: -200px;
}

.view__page {
  font-size: 30px;
  line-height: 34px;
  text-align: center;
  font-weight: 500;
  color: var(--blue);
  margin: 0 0 80px 0;
}

.view__list {
  list-style: none;
}

.view__slider-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 800px;
  height: 630px;
}

.view__content {
  position: relative;
  z-index: 1;
}

.view__content:after {
  content: "";
  position: absolute;
  width: 730px;
  height: 480px;
  background-image: url("../images/computer.png");
  background-size: cover;
  top: -26px;
  left: -52px;
  z-index: -1;
}

.view__picture {
  width: 615px;
  height: 390px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.view__img {
  display: block;
  max-width: unset;
  width: 629px;
}

.view__bottom {
  font-size: 18px;
  line-height: 22px;
  max-width: 350px;
  text-align: center;
  margin: 0 auto;
  letter-spacing: 0.9px;
  color: var(--grey);
}

.bottom {
  color: var(--white);
  background: linear-gradient(to right, var(--blue) 50%, #c24341 50%, #c24341 100%);
}

.bottom__container {
  display: flex;
}

.bottom__part {
  width: 50%;
  flex-shrink: 0;
}

.bottom__part--left {
  background-color: var(--blue);
  padding: 80px 50px 50px 0;
  display: flex;
  flex-direction: column;
}

.bottom__part--right {
  background-color: #c24341;
  padding: 80px 0 50px 50px;
}

.bottom__title {
  margin: 0 0 50px 0;
}

.bottom__text {
  max-width: 460px;
}

.bottom__contacts {
  margin: auto 0 0 0;
}

.bottom__link {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin: 20px 0 0 0;
}

.petrov-form {
  max-width: 620px;
  min-height: 685px;
}

.petrov-form__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 30px 0;
}

.petrov-form__group {
  min-height: 100px;
}

.petrov-form__group .help-block {
  font-size: 12px;
  line-height: 14px;
  color: var(--blue);
  margin: 5px 0;
}

.petrov-form__container .petrov-form__group {
  width: 300px;
}

.petrov-form__input {
  height: 70px;
  width: 100%;
}

.petrov-form__input,
.petrov-form__textarea {
  background-color: transparent;
  border: 1px solid var(--white);
  outline: none;
  padding: 0 25px;
  color: var(--white);
  font-family: "Geometria", "Arial", sans-serif;
  font-size: 24px;
  letter-spacing: 1.2px;
}

.petrov-form__textarea {
  padding: 20px 25px;
  max-width: 100%;
  width: 100%;
}

.petrov-form__group--textarea {
  min-height: 180px;
}

.petrov-form__input:-moz-placeholder,
.petrov-form__textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Geometria", "Arial", sans-serif;
  font-size: 24px;
  letter-spacing: 1.2px;
}

.petrov-form__input::-moz-placeholder,
.petrov-form__textarea::-moz-placeholder{
  color: rgba(255, 255, 255, 0.7);
  font-family: "Geometria", "Arial", sans-serif;
  font-size: 24px;
  letter-spacing: 1.2px;
}

.petrov-form__input:-ms-input-placeholder,
.petrov-form__textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Geometria", "Arial", sans-serif;
  font-size: 24px;
  letter-spacing: 1.2px;
}

.petrov-form__input::-webkit-input-placeholder,
.petrov-form__textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Geometria", "Arial", sans-serif;
  font-size: 24px;
  letter-spacing: 1.2px;
}

.petrov-form__radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  margin: 0 0 20px 0;
}

label.petrov-form__radio-label {
  display: grid;
}

.petrov-form__radio {
  display: none;
}

.petrov-form__radio-indicator {
  background-color: transparent;
  border: 1px solid var(--white);
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.2px;
  min-height: 70px;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  padding: 5px;
}

.petrov-form__radio:checked + .petrov-form__radio-indicator {
  background-color: var(--white);
  color: var(--red);
  transition: 0.2s;
}

.petrov-form__heading {
  font-weight: 900;
  margin: 0 0 15px 0;
}

.petrov-form__file {
  display: flex;
  align-items: center;
  font-weight: 900;
  margin: 0 0 30px 0;
  color: var(--white);
  cursor: pointer;
}

.petrov-form__file-icon {
  margin: 0 10px 0 0;
}

.petrov-form__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.petrov-form__button {
  width: 320px;
  height: 70px;
  background-color: var(--white);
  color: #c24341;
  font-weight: 700;
  letter-spacing: 2.88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 70px;
  flex-shrink: 0;
  cursor: pointer;
}

.petrov-form__bottom-text {
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.6px;
  max-width: 175px;
  text-align: right;
  margin: 0 20px;
}

.petrov-form__privacy {
  color: var(--white);
  text-decoration: underline;
}

.petrov-form__info {
  text-align: center;
}

/* Адаптив */

@media (max-width: 1600px) {
  .task {
    background-position: 0 calc(100% + 100px);
    height: 900px;
  }

  .solution {
    margin: -290px 0 0 0;
  }

  .task__text {
    padding: 0 20px 0 0;
  }

  .task__left,
  .task__right {
    width: 100%;
  }
}

@media (max-width: 1370px) {
  .intro {
    height: 900px;
  }

  .task:after {
    top: -162px;
  }

  .solution__container {
    background-position: -100px 0;
  }

  .processes__wrapper,
  .processes__text {
    max-width: unset;
  }

  .processes__container {
    background-image: none;
  }

  .view__container {
    padding: 0 15px 50px 15px;
    margin: -50px 0 0 0;
    position: relative;
    z-index: 2;
  }

  .view:after {
    width: 100%;
    background-repeat: no-repeat;
  }

  .view__arrow {
    z-index: 2;
  }

  .view__arrow--left {
    left: -50px;
  }

  .view__arrow--right {
    right: -50px;
  }

  .fonts {
    padding: 70px 0 400px 0;
    background-size: 700px 574px;
  }

  .colors__container {
    padding: 0 15px;
  }

  .colors__block {
    height: 650px;
  }

  .colors:after {
    width: 100%;
    background-repeat: no-repeat;
  }

  .bottom {
    background: none;
  }

  .bottom__container {
    flex-direction: column;
    padding: 0;
  }

  .bottom__part {
    width: 100%;
    padding: 40px 15px 50px 15px;
  }

  .bottom__part--left {
    background-color: var(--blue);
  }

  .bottom__part--right {
    background-color:  #c24341;
  }

  .petrov-form {
    margin: 0 auto;
  }

  .bottom__text {
    max-width: unset;
    margin: 0 0 30px 0;
  }

  .bottom__title {
    margin: 0 0 40px 0;
  }

  .petrov-form {
    min-height: unset;
  }
}

@media (max-width: 1100px) {
  .intro__link {
    position: static;
    display: block;
    text-align: center;
  }

  .intro__text-main {
    margin: 0 auto 20px auto;
  }

  .intro__picture:before, .intro__picture:after {
    display: none;
  }
}

@media (max-width: 1000px) {
  .solution__container {
    background-image: none;
  }

  .solution__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .solution__right {
    width: 90%;
    margin: 0 0 30px 0;
  }

  .solution__video {
    text-align: left;
  }

  .solution__content {
    margin: 0 0 40px 0;
  }

  .fonts {
    background-position: calc(100% + 350px) calc(100% - 40px);
  }

  .colors__container {
    margin: -100px 0 0 0;
  }

  .colors__container,
  .colors__block {
    z-index: 2;
    position: relative;
  }
}

@media (max-width: 920px) {
  .view--desktop {
    display: none;
  }

  .view--mobile {
    display: block;
  }

  .view__container {
    margin: -100px 0 0 0;
  }

  .view__bottom {
    display: none;
  }

  .view__img {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .view__title {
    margin: 0 0 40px 0;
  }

  .view__slider {
    width: 100%;
    margin: 0 auto;
  }

  .view__slider-container {
    width: 100%;
    height: unset;
  }

  .view__page {
    margin: 0 0 30px 0;
  }

  .view__arrow {
    bottom: 100px;
  }

  .view__arrow--left {
    left: 50px;
  }

  .view__arrow--right {
    right: 50px;
  }

  .view__icon {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 800px) {
  .intro__img {
    display: block;
    width: 600px;
    margin: 0 auto;
    height: auto;
  }

  .intro__picture,
  .intro__text-main {
    width: 100%;
  }

  .intro__picture {
    margin: 80px auto 20px auto;
  }
}

@media (max-width: 730px) {
  .petrov {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
  }

  .intro {
    height: 700px;
    background-image: url(../images/intro-background.png);
    -webkit-clip-path: polygon(0 0, 730px 0, 730px 700px, 0 625px);
    clip-path: polygon(0 0, 730px 0, 730px 700px, 0 625px);
  }

  .intro__picture {
    margin: 0 auto 20px 0;
  }

  .intro__text-main {
    font-size: 20px;
    line-height: 24px;
  }

  .title {
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 20px 0;
  }

  .task {
    height: auto;
    padding: 0 0 250px 0;
    background-image: url("../images/task-background-mobile.png");
    background-size: unset;
    background-position: 0 100%;
  }

  .task:after {
    top: -96px;
  }

  .task__flex-container {
    flex-direction: column;
  }

  .task__text {
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
  }

  .solution__individual {
    margin: 0 0 20px 0;
  }

  .processes {
    padding: 40px 0;
  }

  .processes__list {
    margin: 0 0 20px 0;
  }

  .view__container {
    margin: -170px 0 0 0;
    padding: 0 15px 20px 15px;
  }

  .view__page {
    font-size: 24px;
    line-height: 28px;
    margin: 0 0 20px 0;
  }

  .view__slider {
    padding: 0 0 70px 0;
  }

  .view__arrow {
    bottom: 0;
  }

  .view__icon {
    width: 40px;
    height: 40px;
  }

  .view__arrow--left {
    left: 50%;
    margin-left: -50px;
  }

  .view__arrow--right {
    right: 50%;
    margin-right: -50px;
  }

  .fonts__subtitle {
    margin: 0 0 40px 0;
  }

  .fonts__geometria {
    font-size: 40px;
    line-height: 44px;
    margin: 0 0 30px 0;
  }

  .fonts__verdana {
    font-size: 40px;
    line-height: 44px;
  }

  .colors__container {
    margin: -150px 0 0 0;
  }

  .colors__block {
    background-color: #9299a1;
    background-image: none;
    height: auto;
    padding: 40px 0;
    margin: 30px 0;
  }

  .colors__list {
    justify-content: space-around;
  }

  .colors__item {
    font-size: 16px;
  }

  .colors__item-text {
    margin: 0;
  }

  .colors__icon {
    width: 140px;
    height: 180px;
  }

  .future {
    padding: 0 0 40px 0;
  }

  .bottom__part {
    padding: 40px 15px;
  }

  .bottom__text {
    margin: 0 0 30px 0;
  }

  .bottom__link {
    margin: 10px 0 0 0;
  }

  .petrov-form__input {
    height: 50px;
  }

  .petrov-form__group {
    min-height: 75px;
  }

  .petrov-form__input,
  .petrov-form__textarea {
    padding: 0 20px;
    font-size: 18px;
    line-height: 20px;
  }

  .petrov-form__textarea {
    padding: 15px 20px;
  }

  .petrov-form__group--textarea {
    min-height: 140px;
  }

  .petrov-form__input:-moz-placeholder,
  .petrov-form__textarea:-moz-placeholder {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .petrov-form__input::-moz-placeholder,
  .petrov-form__textarea::-moz-placeholder{
    font-size: 18px;
    letter-spacing: 1px;
  }

  .petrov-form__input:-ms-input-placeholder,
  .petrov-form__textarea:-ms-input-placeholder {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .petrov-form__input::-webkit-input-placeholder,
  .petrov-form__textarea::-webkit-input-placeholder {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .petrov-form__radio-indicator {
    min-height: 50px;
    height: 100%;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    padding: 5px;
  }

  .petrov-form__container {
    margin: 0;
  }

  .petrov-form__file {
    margin: 0 0 10px 0;
  }

  .petrov-form__bottom {
    flex-direction: column;
    justify-content: center;
  }

  .petrov-form__bottom-text {
    max-width: unset;
    margin: 0 0 15px 0;
    width: 100%;
    text-align: left;
  }

  .petrov-form__button {
    height: 44px;
    letter-spacing: 2px;
    max-width: 100%;
  }

  .petrov-form__container .petrov-form__group {
    width: calc((100% - 20px)/2);
  }
}

@media (max-width: 480px) {
  .intro {
    height: 500px;
    background-image: url(../images/intro-background-mobile.png);
    -webkit-clip-path: polygon(0 0, 480px 0, 480px 500px, 0 445px);
    clip-path: polygon(0 0, 480px 0, 480px 500px, 0 445px);
  }

  .intro-flex__container {
    flex-direction: column;
  }

  .intro__left {
    width: 100%;
    margin: 0 0 10px 0;
    text-align: center;
  }

  .intro__right {
    text-align: center;
    margin: 0 0 10px 0;
  }

  .intro__img {
    width: 340px;
  }

  .intro__text-main {
    margin: 0 0 5px 0;
  }

  .task {
    padding: 0 0 210px 0;
  }

  .task:after {
    top: -56px;
  }

  .solution__wrapper {
    padding: 20px 0 40px 0;
  }

  .solution__right {
    width: 100%;
  }

  .solution__list {
    padding: 0 0 0 30px;
  }

  .solution__manage {
    margin: 0 0 20px 0;
  }

  .solution__video-link {
    font-size: 16px;
  }

  .view__container {
    margin: -200px 0 0 0;
  }

  .view__page {
    font-size: 22px;
    line-height: 26px;
  }

  .fonts {
    background-image: url(../images/fonts-background-mobile.png);
    background-size: 200px 280px;
    background-position: right calc(100% - 220px);
    padding: 40px 0 350px 0;
  }

  .colors__container {
    margin: -180px 0 0 0;
  }

  .colors:after {
    top: -4px;
  }

  .colors__list {
    flex-wrap: wrap;
  }

  .colors__item {
    margin: 0 0 20px 0;
  }

  .petrov-form__container .petrov-form__group {
    width: 100%;
  }

  .petrov-form__radios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .petrov-form__radio-indicator {
    letter-spacing: unset;
  }
}

@media (max-width: 400px) {
  .intro__right {
    display: none;
  }
}

@media (max-width: 350px) {
  .fonts {
    background-position: right calc(100% - 190px);
  }

  .solution__list {
    padding: 0 0 0 20px;
  }

  .view__container {
    margin: -220px 0 0 0;
  }

  .colors__container {
    margin: -200px 0 0 0;
  }

  .colors__list {
    flex-direction: column;
  }

  .colors__block {
    padding: 30px 0 20px 0;
  }
}

.scrollup {
  right: 20px;
  bottom: 72px;
}

.pageback {
  right: 72px;
  bottom: 72px;
}
