:root {
  --white: #FFFFFF;
  --black: #000;
  --orange: #FFBC42;
  --font-family-base: "Space Mono", sans-serif;
  --font-family-unica: "Unica One", sans-serif;
  --transition: 0.3s ;
}

html {
  font-size: 62.5%;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.wrapper {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (max-width: 1200px) {
  header, section, footer {
    padding-right: 10px;
    padding-left: 10px;
  }
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  /*   border: 2px solid red; */
}

body {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  border-style: none;
}

ul {
  list-style: none;
  text-decoration: none;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

button,
input {
  /* 1 */
  overflow: visible;
}

button,
select {
  /* 1 */
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
  -webkit-appearance: button;
  outline: none;
  border: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

@font-face {
  font-family: "Space Mono";
  src: url("../fonts/SpaceMono-Regular.woff2") format("woff2"), url("../fonts/SpaceMono-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Unica One";
  src: url("../fonts/UnicaOne-Regular.woff2") format("woff2"), url("../fonts/UnicaOne-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: var(--font-family-base);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--black);
  cursor: default;
}

.title {
  font-family: var(---font-family-unica);
  font-size: 48px;
  line-height: 90%;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.title--white {
  color: var(--white);
}
.title--orange {
  color: var(--orange);
}
.title--center {
  text-align: center;
}

@media (max-width: 767px) {
  .title {
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 20px;
  }
}
.menu {
  display: flex;
  gap: 40px;
}
.menu--black .menu__link {
  color: var(--black);
}
.menu--black .menu__link:hover, .menu--black .menu__link--active {
  color: var(--white);
}
.menu__link {
  text-decoration: none;
  position: relative;
  color: var(--white);
  transition: all var(--transition);
}
.menu__link:hover, .menu__link--active {
  color: var(--orange);
}

body.overflow {
  overflow-y: hidden;
}

.menu-toggle.open .menu-toggle__item {
  top: 30px;
}

.menu-toggle.open .menu-toggle__item:first-child {
  transform: rotate(45deg);
  width: 18px;
  top: 21px;
  left: 14px;
}

.menu-toggle.open .menu-toggle__item:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .menu-toggle__item:last-child {
  transform: rotate(-45deg);
  width: 18px;
  top: 21px;
  right: 14px;
}

.menu.open {
  top: 0;
  backdrop-filter: blur(10px);
  visibility: visible;
}

.menu-toggle {
  position: absolute;
  background: 0 0;
  border: 1px solid transparent;
  width: 48px;
  height: 48px;
  padding: 0;
  margin: 0;
  color: #fff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 12;
  cursor: pointer;
  display: none;
}
.menu-toggle__item {
  display: block;
  height: 4px;
  width: 40px;
  background: #fff;
  transition: 0.15s;
  position: absolute;
  transform: rotate(0);
}
.menu-toggle__item:first-child {
  width: 18px;
  top: 15px;
  left: 6px;
}
.menu-toggle__item:nth-child(2) {
  width: 34px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
}
.menu-toggle__item:last-child {
  width: 18px;
  bottom: 15px;
  right: 6px;
}

@media (max-width: 1200px) {
  .menu {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .header__menu {
    visibility: hidden;
    position: fixed;
    top: -100%;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-align: center;
    padding: 225px 10px 15px;
    background: var(--black);
    transition: all var(--transition);
  }
  .header__menu__link {
    padding: 10px 0;
    display: block;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
}
.header {
  padding-top: 62px;
  padding-bottom: 30px;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  margin: auto;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  position: relative;
  z-index: 11;
}
.logo:hover * {
  fill: var(--orange);
}
.logo--black * {
  fill: var(--black);
}
.logo--black:hover * {
  fill: var(--white);
}

@media (max-width: 767px) {
  .header {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}
.hero {
  padding-top: 254px;
  padding-bottom: 254px;
}
.hero__title {
  font-family: var(--font-family-unica), sans-serif;
  font-size: 96px;
  line-height: 90%;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
}

@media (max-width: 767px) {
  .hero {
    padding-top: 165px;
    padding-bottom: 100px;
  }
  .hero__title {
    font-size: 24px;
    line-height: 110%;
  }
}
.about {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: var(--orange);
}
.about .title {
  margin-bottom: 20px;
}
.about p {
  font-size: 20px;
}

@media (max-width: 767px) {
  .about p {
    font-size: 16px;
  }
}
.examples__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.examples__item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--orange);
}
.examples__title {
  font-family: var(---font-family-unica);
  font-size: 48px;
  line-height: 90%;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .examples__item {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 0 10px;
  }
  .examples__image {
    width: 120px;
  }
  .examples__title {
    font-size: 24px;
    line-height: 110%;
  }
}
.development {
  background-color: var(--orange);
}
.development p {
  margin-bottom: 40px;
}
.development__block {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(4, 1fr);
  align-items: flex-start;
}
.development__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #0D0D0D;
  border-radius: 10px;
  padding: 10px 5px 10px 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}
.development__number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--black);
  padding: 0px 4px;
  gap: 10px;
  width: 21px;
  height: 30px;
  background: var(--orange);
  border-radius: 5px;
}
.development__title {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.development__list {
  margin-left: 22px;
}
.development__list li {
  list-style: disc;
}

@media (max-width: 900px) {
  .development__block {
    padding-left: 10px;
    padding-right: 10px;
    grid-template: 1fr/repeat(2, 1fr);
  }
  .development__item {
    padding: 10px;
  }
}
@media (max-width: 640px) {
  .development__block {
    grid-template: 1fr/repeat(1, 1fr);
  }
}
.team {
  color: var(--orange);
}
.team p {
  margin-bottom: 40px;
}
.team__block {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(4, 1fr);
}
.team__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.team__item img {
  filter: grayscale(100%);
}
.team__item span {
  font-size: 24px;
}

@media (max-width: 767px) {
  .team__block {
    grid-template: 1fr/repeat(2, 1fr);
  }
  .team__item {
    width: 100%;
  }
  .team__item span {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .team__block {
    grid-template: 1fr/repeat(1, 1fr);
  }
}
.reviews {
  background-color: var(--orange);
}
.reviews__block {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(3, 1fr);
}
.reviews__item {
  background: var(--black);
  border-radius: 20px;
  padding: 30px;
  color: var(--white);
}
.reviews__name {
  font-family: var(---font-family-unica);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.reviews__position {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 15px;
}
.reviews__text {
  font-size: 14px;
}

@media (max-width: 767px) {
  .reviews__block {
    grid-template: 1fr/repeat(1, 1fr);
  }
}
.warning .wrapper {
  max-width: 780px;
  background: var(--orange);
  border-radius: 20px;
  text-align: center;
  padding: 40px 94px;
  font-size: 20px;
}
.warning .title {
  position: relative;
  font-size: 36px;
  margin-bottom: 20px;
}
.warning .title:before {
  content: "";
  display: block;
  background: url(../img/warning.webp);
  width: 62px;
  height: 56px;
  margin: 0 auto 10px;
}

@media (max-width: 767px) {
  .warning .wrapper {
    font-size: 16px;
    padding: 40px 10px 30px;
  }
  .warning .title {
    font-size: 24px;
  }
}
.bewertungen {
  background-color: var(--orange);
}
.bewertungen__block {
  display: grid;
  gap: 20px;
  grid-template: 1fr/repeat(4, 1fr);
  align-items: flex-start;
}
.bewertungen__title {
  position: relative;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
  gap: 10px;
}
.bewertungen__title::before {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 26px;
  background: var(--black);
  border-radius: 5px;
}

@media (max-width: 1090px) {
  .bewertungen__block {
    grid-template: 1fr/repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .bewertungen__block {
    grid-template: 1fr/repeat(1, 1fr);
    padding: 0 20px;
    font-size: 12px;
  }
  .bewertungen__title {
    font-size: 16px;
  }
}
.contacts {
  text-align: center;
}
.contacts .title {
  margin-bottom: 40px;
}
.contacts__info {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 40px;
}
.contacts__info ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.contacts__info ul li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 5px;
  margin-top: 9px;
  background: var(--white);
}

.form-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.form {
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.form__input {
  width: 100%;
  height: 53px;
  font-size: 14px;
  padding: 16px 20px;
  border: 1px solid var(--white);
  border-radius: 10px;
  color: var(--white);
  outline: none;
  margin-bottom: 8px;
  background: var(--black);
}
.form__input::placeholder {
  color: #666666;
}
.form__input::-webkit-contacts-auto-fill-button {
  display: none !important;
  width: 0 !important;
  margin: 0 !important;
  border: none !important;
}
.form__button {
  width: 100%;
  height: 56px;
  background: var(--orange);
  color: var(--black);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--orange);
  cursor: pointer;
}
.form__button:hover, .form__button:active {
  border-color: var(--white);
  background: var(--black);
  color: var(--white);
}

@media (max-width: 767px) {
  .contacts {
    padding-bottom: 70px;
  }
  .contacts .title {
    margin-bottom: 20px;
  }
  .form-title {
    margin-bottom: 20px;
  }
}
.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--orange);
  color: var(--black);
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .footer .wrapper {
    flex-direction: column;
  }
  .footer__logo {
    margin-bottom: 40px;
  }
  .footer__menu {
    align-items: center;
    flex-direction: column;
  }
}