@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@900&family=Roboto:wght@400;700;800;900&display=swap");

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

body {
  background: #fff;
}

a {
  text-decoration: none;
}

.wrapper {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.17;
  color: #000;
  background-color: #fff;
}

.container {
  max-width: 1820px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: relative;
  background: #fff;
  height: 90px;
  transition: all 0.4s ease;
}

.header__container {
  max-width: 1550px;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header img {
  max-width: 175px;
  display: block;
  transition: all 0.4s ease;
}

.burger {
  display: block;
  width: 25px;
  height: 17px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.burger span {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  transition: all 0.2s linear;
}

.burger span:first-child {
  top: 0;
}

.burger span:last-child {
  top: auto;
  bottom: 0;
}

.burger.active span {
  transform: scale(0);
}

.burger.active span:first-child {
  transform: rotate(-45deg);
  top: 7px;
}

.burger.active span:last-child {
  transform: rotate(45deg);
  bottom: 7px;
}

.nav {
  position: absolute;
  top: 100%;
  left: -100%;
  width: 100%;
  font-size: 18px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  background-color: #fff;
  border-top: 1px solid #000;
}

.nav.active {
  left: 0;
}

.nav__item a {
  padding: 10px 15px;
  display: block;
  color: #000;
  transition: all 0.3s ease;
}

.nav__item a:hover {
  background-color: rgba(105, 214, 255, 0.2);
}

.banner img {
  width: 100%;
  height: auto;
}

.banner__desktop {
  display: block;
}

.banner__mobile {
  display: none;
}

.steps {
  padding: 20px 0;
  display: block;
  text-align: left;
  background: #000;
}

.steps__items {
  display: flex;
  justify-content: center;
}

.steps__item {
  padding: 9px;
  position: relative;
  display: flex;
  align-items: center;
  background: #000;
  border-radius: 4px;
}

.steps__item:not(:last-child) {
  margin-right: 47px;
  transition: all 0.4s ease;
}

.steps__num {
  width: 60px;
  height: 60px;
  margin-right: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 9px 20px; */
  background: linear-gradient(180deg, #f7ec69 0%, #c47827 100%);
  border-radius: 4px;
  font-family: "Roboto Slab", serif;
  font-weight: 900;
  font-size: 35px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
}

.steps__content {
  font-weight: 700;
  font-size: 27px;
  text-align: left;
  color: #fff;
  transition: all 0.4s ease;
}

.steps__top {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.steps__bottom {
  font-size: 15px;
  font-weight: 400;
}

.steps__arrow,
.steps__check {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: calc(100% + 8px);
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.steps__check {
  display: none;
}

.steps__arrow img,
.steps__check img {
  width: 100%;
  max-width: 30px;
  height: auto;
}

.info {
  padding: 10px 0;
  font-weight: 700;
  text-align: center;
  background: #fff;
  transition: all 0.4s ease;
}

/* media */

@media (max-width: 800px) {
  .steps {
    padding: 10px 0;
  }

  .steps__items {
    flex-direction: column;
  }

  .steps__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .steps__top {
    margin-right: 25px;
    white-space: normal;
  }

  .steps__arrow {
    top: 12px;
    left: calc(100% - 9px);
    transform: translateX(-100%) rotate(90deg);
  }

  .steps__check {
    top: 12px;
    left: calc(100% - 9px);
    display: block;
    transform: translateX(-100%);
  }
}

@media (max-width: 576px) {
  .header {
    height: 75px;
  }

  .header img {
    max-width: 124px;
  }

  .banner__desktop {
    display: none;
  }

  .banner__mobile {
    display: block;
  }

  .steps__num {
    width: 38px;
    height: 38px;
    font-size: 31px;
  }

  .steps__top {
    margin-bottom: 2px;
    font-size: 16px;
  }

  .steps__bottom {
    font-size: 16px;
  }

  .steps__arrow,
  .steps__check {
    width: 20px;
    height: 20px;
    top: 8px;
  }

  .info {
    font-size: 14px;
  }
}
