:root {
  --cWhite: #fff;
  --cBlack: #000;
  --cBlue: #3483E2;
  --cBlueLight: #F4F7FF;
  --font: "Jost", sans-serif;
  --fontLogo: "Rosario", sans-serif;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Regular.woff2") format("woff2"), url("../fonts/Jost-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-SemiBold.woff2") format("woff2"), url("../fonts/Jost-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Bold.woff2") format("woff2"), url("../fonts/Jost-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
*, *:before, *:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--cBlack);
  background: var(--cWhite);
  min-height: 100vh;
}

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

#spriteSVG {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-height: 100vh;
  justify-content: space-between;
}

.content {
  position: relative;
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container {
  margin: 0 auto;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1050px;
}

.title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
}

.item {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 15px;
  counter-increment: num;
}
.item__img {
  position: relative;
  width: 160px;
  margin: 0 auto;
  z-index: 2;
}
.item__text {
  position: relative;
  line-height: 1.6;
}
.item__text b {
  color: var(--cBlue);
  font-weight: 700;
}
.item__text:before {
  position: absolute;
  content: counter(num);
  font-size: 240px;
  color: var(--cBlue);
  font-weight: 700;
  opacity: 0.1;
  z-index: 1;
  bottom: 100%;
  transform: translateY(50%) translateY(-30px);
  left: 0;
}
.item__text span {
  position: relative;
  z-index: 2;
}

.b-logo {
  display: inline;
  font-family: var(--font);
  font-weight: 700;
  font-size: 25px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  white-space: nowrap;
  margin-right: 20px;
}
.b-logo span {
  color: #F45330;
}
.b-logo img {
  display: inline-block;
}

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

.footer .b-logo {
  font-size: 20px;
}
.footer .b-logo img {
  max-width: 12px;
}

.b-header {
  padding: 40px 0 0;
  width: 100%;
  z-index: 50;
  background: #fff;
  transition: padding 0.5s, box-shadow 0.5s;
  line-height: 1.67;
}

.b-header .container {
  max-width: 1250px;
}

.lang__box {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}
.lang__box:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background: var(--cBlue);
  transform: translate(-50%, -50%) translateY(-1px);
}
.lang__item {
  font-size: 16px;
  color: var(--cBlack);
  transition: color 0.25s, text-shadow 0.25s;
}
.lang__item--active {
  color: var(--cBlue);
  font-weight: 700;
}

.header {
  padding: 14px 0;
}
.header .content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  position: relative;
  font-family: var(--fontLogo);
  font-size: 24px;
  font-weight: 500;
  color: var(--cBlue);
  z-index: 11;
}
.header__nav {
  position: absolute;
  width: 100%;
  top: -14px;
  left: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  padding: 65px 0;
  transform: translateY(-100%);
  transition: transform 0.25s, box-shadow 0.25s;
  background: var(--cWhite);
  box-shadow: 0 0 0 0 #fff;
  z-index: 10;
}
.menu_show .header__nav {
  transform: translateY(0);
  box-shadow: 0 16px 32px 0 rgba(169, 178, 203, 0.5);
}
.header__menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 30px;
}
.header__item {
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  color: var(--cBlack);
}
.header__burger {
  position: relative;
  width: 18px;
  height: 16px;
  z-index: 11;
}
.header__burger span {
  top: 50%;
  left: 50%;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cBlack);
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.header__burger span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-7px);
}
.header__burger span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(7px);
}
.menu_show .header__burger span:nth-child(1) {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.menu_show .header__burger span:nth-child(2) {
  transform: translate(-50%, -50%) scaleX(0);
}
.menu_show .header__burger span:nth-child(3) {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}

.main {
  counter-reset: num;
  padding: 30px 0;
}

.footer {
  padding: 30px 0;
  background: var(--cBlueLight);
}
.footer__text {
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}
.footer__label {
  margin-top: 15px;
  margin-bottom: 50px;
  padding: 25px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  border-radius: 16px;
  background: var(--cWhite);
  box-shadow: 0 16px 32px 0 rgba(169, 178, 203, 0.5);
}
.footer__label a {
  color: var(--cBlue);
  display: block;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}
.footer__label a:hover {
  text-decoration: underline;
}
