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

/* SIZE */
/* COLOR VARIABLE */
:root {
  --color-content: #f5f4fa;
  --color-blue: #2196f3;
}

/*  CONTENT BODY  */
html {
  font-family: "Roboto";
  width: 480px;
  margin: auto;
}

@media screen and (min-width: 480px) {
}

@media screen and (min-width: 720px) {
  html {
    width: 720px;
  }
  main {
    width: 720px;
  }
}
@media screen and (min-width: 1400px) {
  html {
    width: 1400px;
  }
}
@media screen and (min-width: 720px) {
  main {
    width: 720px;
  }
}
@media screen and (min-width: 1400px) {
  main {
    width: 1400px;
  }
}

section + section + section:nth-child(2n) {
  background-color: var(--color-content);
}

/* HEADER */

button {
  background-color: transparent;
  border: none;
  margin-right: 15px;
  /* margin-left: auto; */
}
button .icon--close {
  display: none;
}
button.is-open .icon--close {
  display: block;
}
button.is-open .icon--menu {
  display: none;
}

.menu--conteiner {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ecece8;
  opacity: 1;
  padding: 20px;
  /* text-align: center; */
  font-size: 22px;
  border-radius: 0 0 15px 15px;
}
.menu--conteiner.is-open {
  display: block;
}

.menu-button--block {
  font-size: 40px;
  line-height: 2.2;
}

.menu-button--contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 30px;
}
.menu-button--contacts .header__booton {
  line-height: 3;
}

.adaptiv {
  display: none;
}
@media screen and (min-width: 420px) {
}
@media screen and (min-width: 720px) {
  .adaptiv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}
@media screen and (min-width: 1400px) {
  .adaptiv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}
.menu-button {
  display: none; /* по умолчанию скрыта */
}

@media screen and (max-width: 720px) {
  .menu-button {
    display: block;
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  height: 60px;
  background: #fff;
  width: 1400px;
  z-index: 1;
  border-bottom: solid 1px var(--color-content);
}
@media screen and (min-width: 720px) {
  .header {
    margin-left: -2px;
    width: 724px;
  }
}
@media screen and (min-width: 1400px) {
  .header {
    margin-left: -2px;
    width: 1400px;
    height: 80px;
  }
}

li {
  list-style: none;
}

.header__logo {
  margin-left: 22px;
  margin-right: 32px;
}
@media screen and (min-width: 1400px) {
  .header__logo {
    margin-right: 200px;
    margin-left: 160px;
  }
}

.logo {
  font-family: Raleway;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 1400px) {
  .logo {
    font-size: 26px;
  }
}

.studio {
  color: #ffffff;
}

.text {
  height: 20px;
  width: 500px;
  background-color: var(--color-blue);
}

.inspect {
  position: relative;
}

.inspect-menu-line::before {
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: var(--color-blue);
  bottom: 0px;
  position: absolute;
}

/* LINKS href */
a {
  color: #000;
  text-decoration-line: none;
}
a:hover {
  color: var(--color-blue);
}

a span {
  color: var(--color-blue);
}

/* MENU */
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (min-width: 720px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__nav--item + .header__nav--item {
  margin-left: 30px;
}

@media screen and (min-width: 420px) {
  .link {
    padding: 22px 0px;
  }
}
@media screen and (min-width: 1400px) {
  .link {
    padding: 32px 0px;
  }
}

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

@media screen and (min-width: 720px) {
  .header__contacts {
    display: block;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .header__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0px;
  }
}

/* BOOTON */
.booton {
  display: inline-block;
  background: var(--color-blue);
  border: 0.2rem solid var(--color-blue);
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 0.06em;
  color: #fff;
}
.booton:hover {
  background: none;
}

.header__booton {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 0.2;
  letter-spacing: 0.02em;
}
.header__booton:hover path {
  fill: var(--color-blue);
}
.header__booton:before {
  content: "";
  height: 20px;
  width: 20px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header__booton--mobil {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 0.2;
  letter-spacing: 0.02em;
}
.header__booton--mobil:hover path {
  fill: var(--color-blue);
}
.header__booton--mobil:before {
  content: "";
  height: 20px;
  width: 20px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header__booton--mail,
.header__booton--phone {
  margin-right: 10px;
}

/* SECTION HERO*/
.hero {
  color: var(--color-content);
  height: 400px;
  position: relative;
  text-align: center;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(0, 0, 0, 0.4)),
      to(rgba(0, 0, 0, 0.4))
    ),
    url(../image/title/Header480.jpg);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../image/title/Header480.jpg);
  background-size: cover;
  top: 60px;
  margin-bottom: 150px;
}
@media screen and (min-width: 720px) {
  .hero {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        from(rgba(0, 0, 0, 0.4)),
        to(rgba(0, 0, 0, 0.4))
      ),
      url(../image/title/Header720.jpg);
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.4)
      ),
      url(../image/title/Header720.jpg);
    background-size: cover;
  }
}
@media screen and (min-width: 1400px) {
  .hero {
    height: 600px;
    top: 80px;
  }
}

.hero__block {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.hero__block--title {
  font-weight: 600;
  font-size: 26px;
  line-height: 42px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (min-width: 1400px) {
  .hero__block--title {
    font-weight: 900;
    font-size: 44px;
    line-height: 60px;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}

/* SECTION BLOCK */
section {
  padding-top: 60px;
  padding-bottom: 60px;
  width: 480px;
}
@media screen and (min-width: 720px) {
  section {
    width: 720px;
  }
}
@media screen and (min-width: 1400px) {
  section {
    width: 1400px;
  }
}

.block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 1400px) {
  .block {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: 215px;
    margin-right: 215px;
  }
}

.hero--information {
  padding-top: 0px;
}

.conteiner {
  width: 450px;
  text-align: center;
  background: #fff;
  padding: 0 15px 30px 15px;
}
@media screen and (min-width: 720px) {
  .conteiner {
    -ms-flex-preferred-size: calc((100% - 30px) / 2);
    flex-basis: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .conteiner {
    padding-bottom: 0px;
  }
}

.conteiner__information--vector::before {
  background-image: url(../image/service/antenna.png);
}

.conteiner__information--clock::before {
  background-image: url(../image/service/astronaut.png);
}

.conteiner__information--astronaut::before {
  background-image: url(../image/service/clock.png);
}

.conteiner__information--antena::before {
  background-image: url(../image/service/vector.png);
}

.conteiner__information::before {
  display: block;
  height: 120px;
  content: "";
  background-size: center;
  background-repeat: no-repeat;
  background-color: var(--color-content);
  background-position: center;
  border-radius: 5px;
}

.container__title {
  padding: 30px 0 10px 0;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
}

.container__text {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #757575;
}

.text {
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #757575;
}

.conteiner__text {
  width: 270px;
}

.section__title {
  margin-top: 0;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 0.8;
  letter-spacing: 0.03em;
  color: #212121;
}

.item {
  text-align: center;
  background: #fff;
  position: relative;
}

.item__work:not(:first-child) {
  margin-left: 30px;
}

.item__work::before {
  content: "";
  width: 100%;
  height: 60px;
  background: #000000;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 0;
}

.section__information {
  font-family: "Roboto";
  padding: 6px;
  color: #afb1b8;
  position: absolute;
  bottom: 0;
  right: 0;
}

/* section person */
.persons {
  height: 450px;
  -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12),
    0px 1px 1px rgba(0, 0, 0, 0.14), 0px 2px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14),
    0px 2px 1px rgba(0, 0, 0, 0.2);
  border-radius: 0px 0px 4px 4px;
  margin: 15px;
}

.name {
  padding: 16px 0 16px 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #212121;
}

.section--work {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #757575;
  display: none;
}
@media screen and (min-width: 1400px) {
  .section--work {
    display: block;
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding-top: 16px;
  width: 206px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
}

.image__icon {
  height: 20px;
  width: 20px;
}

.social__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(160, 160, 160, 0.1);
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.social__icon:hover {
  background: var(--color-blue);
  opacity: 1;
}

/* company */
.company {
  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-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
}
@media screen and (min-width: 1400px) {
  .company {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-left: 215px;
    margin-right: 215px;
  }
}

.company__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
  width: 50%;
  border: 1px solid #afb1b8;
  border-radius: 4px;
  -ms-flex-preferred-size: calc((100% - 30px) / 2);
  flex-basis: calc((100% - 30px) / 2);
  margin-bottom: 30px;
}
@media screen and (min-width: 1400px) {
  .company__logo {
    margin-bottom: 0px;
  }
  .company__logo:not(:first-child) {
    margin-left: 30px;
  }
}

/* footer */
footer {
  width: 480px;
  background: #2f303a;
  height: 630px;
}
@media screen and (min-width: 720px) {
  footer {
    width: 720px;
  }
}
@media screen and (min-width: 1400px) {
  footer {
    width: 1400px;
    height: 252px;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 1400px) {
  .footer__content {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
    -ms-flex-direction: inherit;
    flex-direction: inherit;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 215px;
    margin-right: 215px;
  }
}

.logo__footer {
  margin: 0;
}

.footer__information {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  width: 220px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #ffffff;
}
@media screen and (min-width: 1400px) {
  .footer__information {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer__item {
  color: rgba(255, 255, 255, 0.6);
}

.footer__social--title .footer__subscribe--title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-top: 0;
}

.footer__text {
  padding-top: 60px;
  width: 220px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 1400px) {
  .footer__text {
    text-align: left;
  }
}

.footer__social {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1400px) {
  .footer__social {
    margin-left: 0;
    margin-right: 0;
  }
}

.footer__social--imges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 16px;
}

.social__icon:not(:last-child) {
  margin-right: 20px;
}

.footer__subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  padding-top: 60px;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #ffffff;
}
@media screen and (min-width: 1400px) {
  .footer__subscribe {
    text-align: left;
  }
}

@media screen and (min-width: 1400px) {
  .footer__subscribe--block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer__subscribe--input {
  margin-top: 20px;
}

.footer__subscribe--booton {
  margin-top: 20px;
}
@media screen and (min-width: 1400px) {
  .footer__subscribe--booton {
    margin-left: 12px;
  }
}

.footer__subscribe input {
  padding: 10px;
  background-color: #d9d9d9;
  border: solid #757575 2px;
  border-radius: 5px;
  font-size: 18px;
  width: 450px;
  height: 50px;
}
@media screen and (min-width: 1400px) {
  .footer__subscribe input {
    width: 360px;
  }
}

label {
  display: inline-block;
}

label .booton {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 0.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.06em;
  width: 200px;
  height: 50px;
}

.booton:hover {
  color: #fff;
}

.booton img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 30px;
  height: 20px;
  width: 20px;
}

/* css portfolio */
@media screen and (min-width: 1400px) {
  .portfolio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 720px) {
  .portfolio-item__list {
    width: 100%;
    -ms-flex-preferred-size: calc((100% - 30px) / 2);
    flex-basis: calc((100% - 30px) / 2);
    margin-left: auto;
  }
}
@media screen and (min-width: 1400px) {
  .portfolio-item__list {
    -ms-flex-preferred-size: calc((100% - 30px) / 4);
    flex-basis: calc((100% - 30px) / 4);
    width: 380px;
    margin-left: 30px;
  }
}
.portfolio-item__list:hover {
  -webkit-box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2);
}

.nav {
  padding-top: 140px;
  padding-bottom: 12px;
}
@media screen and (min-width: 720px) {
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.progects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.progects-list {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #000000;
}
.progects-list:not(:last-child) {
  margin-right: 8px;
  margin-bottom: 40px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 150, 243, 0.5);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 250ms;
  transition: -webkit-transform 250ms;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms;
  margin-top: 1px;
}

.portfolio-item__list:hover .overlay {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.portfolio-item__list:hover .overlay-information {
  opacity: 1;
}
.portfolio-item__list:not(:last-child) {
  margin-bottom: 30px;
}

.card--text {
  margin: 20px 24px;
}

.overlay-information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  margin-left: 24px;
  margin-right: 24px;
  height: 100%;
  top: 0;
  left: 0;
  font-family: "Raleway";
  font-size: larger;
  font-weight: 500;
  color: var(--color-content);
  pointer-events: fill;
  opacity: 0;
  -webkit-transition: opacity 2100ms cubic-bezier(0.04, 0, 0.2, 1) 250ms;
  transition: opacity 2100ms cubic-bezier(0.04, 0, 0.2, 1) 250ms;
}

.work {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.03em;
  text-align: inherit;
  color: #757575;
}

/* booton nav */
.shadow {
  -webkit-box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
  box-shadow: 0px 5px 5px -5px rgba(34, 60, 80, 0.6);
}

.progects-list_link {
  background: var(--color-content);
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 5px;
}

.progects-list_link--first {
  color: var(--color-blue);
}

.portfolio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
}

/* mail form */
.popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: auto;
  display: none;
}
.popup.is-open {
  display: block;
}
.popup:target {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.block-form {
  position: absolute;
  top: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 460px;
  padding: 20px;
  line-height: 1;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 6px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 5px 6px 1px rgba(0, 0, 0, 0.18);
}

.block-form a {
  margin-left: auto;
  margin-right: 8px;
}

.block-form h2 {
  text-align: center;
}

.block-fail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  height: 60px;
}

.form-label {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 250ms linear;
  transition: -webkit-transform 250ms linear;
  transition: transform 250ms linear;
  transition: transform 250ms linear, -webkit-transform 250ms linear;
  pointer-events: none;
}

.form-input:not(:-moz-placeholder-shown) ~ .form-label {
  transform: translateY(-50px);
}

.form-input:not(:-ms-input-placeholder) ~ .form-label {
  transform: translateY(-50px);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.form-input:focus ~ .form-input_icon svg {
  fill: #2196f3;
}

.form-input:focus {
  background-color: #f5f4fa;
}

.form-input {
  margin: 0;
  width: 100%;
  padding: 10px 40px;
  border-radius: 3px;
  border: 2px #afb1b8 solid;
}

.form-input_icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  pointer-events: none;
}

.block-fail_comments {
  left: 30px;
}

.form-label_comments {
  padding-left: 42px;
}

textarea {
  height: 200px;
  resize: none;
}

.form-labl_comment {
  padding-left: 10px;
}

.checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 40px;
  position: absolute;
  display: inline-block;
}

.check-icon {
  display: inline-block;
  border: #000 solid 1px;
  border-radius: 3px;
  width: 15px;
  height: 15px;
}

.block-fail_checbox {
  padding-left: 8px;
  height: 20px;
}

.checkbox:checked + .check-icon {
  background-image: url(../image/icon/checkbox.svg);
  background-size: cover;
  background-position: center;
  background-origin: border-box;
  background-color: #d9d9d9;
}

.button {
  margin: auto;
  height: 30px;
  width: 100px;
  background-color: #2196f3;
  border-radius: 5px;
  border-color: #1386e4;
  -webkit-box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 4px 3px 0px rgba(0, 0, 0, 0.18);
}

.section__contacts {
  padding-top: 30px;
  font-size: 22px;
  line-height: 50px;
  text-align: justify;
  width: 400px;
} /*# sourceMappingURL=main.css.map */
