body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
}

input,
textarea {
  outline: none;
}

textarea {
  resize: none;
}

:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
}

body {
  min-width: 320px;
  font-family: 'Nunito Sans', sans-serif;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

header,
aside,
section,
footer {
  display: block;
}

::-webkit-input-placeholder {
  color: #000;
}

::-moz-placeholder {
  color: #000;
}

:-moz-placeholder {
  color: #000;
}

:-ms-input-placeholder {
  color: #000;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus:-moz-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

h1 {
  line-height: 44px;
  font-size: 44px;
  font-weight: 800;
}

h2 {
  line-height: 42px;
  font-size: 36px;
  font-weight: 800;
}

h3 {
  line-height: 36px;
  font-size: 28px;
  font-weight: 800;
}

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

a {
  color: #5368d6;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

a:hover {
  color: #394eba;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.content {
  margin-bottom: auto;
  width: 100%;
}

.wrapper-block {
  padding: 48px 0;
  width: 100%;
}

.wrapper-block--grey {
  background-color: #fafafa;
}

.box-center {
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
  max-width: 1520px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.box-media {
  width: 100%;
}

.box-list {
  margin-top: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.box-list__title {
  font-weight: 700;
}

.box-column {
  margin-bottom: 32px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.started {
  padding-right: 25px;
  font-size: 18px;
  position: relative;
}

.started:before {
  content: "";
  margin-top: -1px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  border-bottom: 2px solid #5368d6;
  border-right: 2px solid #5368d6;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  -ms-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transition: border-color 300ms;
  transition: border-color 300ms;
}

.started:hover:before {
  border-bottom: 2px solid #394eba;
  border-right: 2px solid #394eba;
}

.subtitle {
  margin-bottom: 8px;
  line-height: 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.header {
  padding: 20px 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e2e2e2;
}

.header .box-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header .logo {
  width: 150px;
}

.header .nav-menu__list {
  padding: 10px 0;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 86px;
  left: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
  -webkit-transition: opacity 500ms, top 500ms;
  transition: opacity 500ms, top 500ms;
}

.header .nav-menu__link {
  font-size: 16px;
}

.header .nav-menu.open .nav-menu__list {
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  margin-left: 20px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  position: relative;
}

.nav-menu.open .nav-menu__mob-btn {
  border: 0;
}

.nav-menu.open .nav-menu__mob-btn:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-menu.open .nav-menu__mob-btn:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}

.nav-menu__item.active .nav-menu__link,
.nav-menu__item:hover .nav-menu__link {
  color: #5368d6;
}

.nav-menu__link {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 300ms;
  transition: color 300ms;
}

.nav-menu__mob-btn {
  width: 18px;
  height: 12px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: border 300ms;
  transition: border 300ms;
}

.nav-menu__mob-btn:before,
.nav-menu__mob-btn:after {
  content: '';
  margin-top: -1px;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: currentColor;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}

.lang {
  margin-left: auto;
  position: relative;
}

.lang__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.lang__current .lang__string {
  font-size: 18px;
}

.lang__current .lang__string span {
  display: none;
}

.lang__current .lang__icn {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.lang__string {
  line-height: 24px;
  font-size: 16px;
  white-space: nowrap;
}

.lang__list {
  padding: 0 16px;
  width: 270px;
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0 15px 20px 0 rgba(0,0,0,0.16);
  box-shadow: 0 15px 20px 0 rgba(0,0,0,0.16);
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.lang__list.show {
  opacity: 1;
  visibility: visible;
}

.lang__list-item {
  padding: 15px 34px 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e2e2e2;
  cursor: pointer;
}

.lang__list-item:first-child {
  border: 0;
}

.lang__list-item.checked {
  background: url("../img/svg/icn-checked.svg") no-repeat center right;
}

.lang__icn {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.btn {
  padding: 0;
  width: 160px;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  color: #5368d6;
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid #5368d6;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: border-color 300ms;
  transition: border-color 300ms;
}

.btn:hover {
  border: 1px solid #394eba;
}

.btn--blue {
  color: #fff;
  border: 0;
  background-color: #5368d6;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}

.btn--blue:hover {
  color: #fff;
  background-color: #394eba;
}

.btn-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

.wrapper-block--grey .box-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

.wrapper-block--grey .box-media {
  margin: 0 auto;
  max-width: 360px;
}

.wrapper-block--grey .box-text {
  margin: 0 auto;
  max-width: 468px;
  text-align: center;
}

.wrapper-block--quickly h3 {
  max-width: 550px;
}

.wrapper-block--quickly .box-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 48px;
}

.wrapper-block--quickly .desc {
  line-height: 28px;
  font-size: 16px;
}

.wrapper-block--quickly .box-list__item {
  width: 100%;
}

.wrapper-block--quickly .box-list__icn {
  margin-bottom: 8px;
  width: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.wrapper-block--quickly .box-list__title {
  margin-bottom: 8px;
  font-size: 20px;
}

.wrapper-block--quickly .box-list__text {
  line-height: 28px;
  font-size: 16px;
}

.wrapper-block--quickly .btn-group {
  margin-top: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrapper-block--quickly .box-media {
  margin: 0 auto;
  max-width: 400px;
}

.wrapper-block--colortheme {
  position: relative;
}

.wrapper-block--colortheme:before,
.wrapper-block--colortheme:after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
}

.wrapper-block--colortheme:before {
  left: 0;
  background-color: #5368d6;
}

.wrapper-block--colortheme:after {
  right: 0;
  background-color: #233280;
}

.wrapper-block--colortheme .box-media {
  margin: 0 auto;
  width: 96%;
  max-width: 1290px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.wrapper-block--colortheme .box-media img {
  width: auto;
}

.wrapper-block--colortheme .box-media__text {
  width: 92%;
  max-width: 1190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  bottom: -10%;
  color: #fff;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.wrapper-block--colortheme .box-media__text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.wrapper-block--colortheme .box-media__text-item img {
  width: 32px;
}

.wrapper-block--experience .box-list {
  margin: 0;
}

.wrapper-block--experience .box-list__item {
  padding: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  background-color: #fafafa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.wrapper-block--experience .box-list__item:last-child {
  width: 100%;
}

.wrapper-block--experience .box-list__icn {
  width: 32px;
}

.wrapper-block--experience .box-list__icn img {
  width: 100%;
}

.wrapper-block--experience .box-list__title {
  font-size: 20px;
}

.wrapper-block--experience .started {
  margin-top: auto;
}

.wrapper-block--dark {
  background-color: #000;
}

.wrapper-block--dark .box-text {
  margin: 0 auto;
  max-width: 923px;
  color: #fff;
  text-align: center;
}

.wrapper-block--dark .btn {
  color: #fff;
  border: 1px solid #fff;
}

.wrapper-block--dark .btn--blue {
  border: 0;
}

.single {
  padding: 48px 0;
  width: 100%;
}

.single .box-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 32px 20px;
}

.single .aside {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  line-height: 28px;
}

.single .single__content {
  width: 100%;
  max-width: 952px;
}

.faq-box {
  margin-top: 32px;
}

.faq-box__title {
  margin-bottom: 16px;
  line-height: 28px;
  font-size: 20px;
  font-weight: 700;
}

.faq-box__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.faq-box__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.accordion {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.accordion__item {
  padding: 24px 0;
  width: 100%;
  border-bottom: 1px solid #d6d6d6;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.accordion__item.active .accordion__title:before {
  margin-top: -3px;
  right: 0;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  -ms-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.accordion__title {
  padding-right: 20px;
  line-height: 28px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

.accordion__title:before {
  content: "";
  margin-top: -2px;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 6px;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
  -ms-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.accordion__content {
  width: 100%;
  max-height: 0;
  line-height: 24px;
  font-size: 16px;
  overflow: hidden;
  -webkit-transition: max-height 500ms;
  transition: max-height 500ms;
}

.accordion__content-text {
  padding-top: 8px;
}

.agreement {
  width: 100%;
  line-height: 24px;
  font-size: 16px;
}

.agreement p {
  margin-bottom: 32px;
}

.agreement p span {
  display: block;
}

.agreement h4 {
  margin-bottom: 16px;
  color: #5368d6;
}

.agreement label {
  cursor: pointer;
}

.agreement__list {
  margin-bottom: 32px;
  width: 100%;
}

.agreement__list-item {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.agreement__list-item:first-child span {
  color: #5368d6;
}

.agreement__list-item h4 {
  margin: 0;
}

.agreement__list p {
  margin: 0;
}

.agreement__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.agreement .btn-group {
  margin-top: 16px;
}

.agreement .btn-group .btn {
  width: 120px;
}

.agreement .btn-group .btn--blue {
  width: 114px;
}

.footer {
  width: 100%;
  line-height: 24px;
  font-size: 16px;
  color: #d6d6d6;
  background-color: #282a31;
}

.footer .logo {
  width: 150px;
}

.footer .nav-menu__link {
  font-size: 16px;
  color: #d6d6d6;
}

.footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #d6d6d6;
  text-decoration: none;
}

.footer__row {
  padding: 32px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.footer__row:first-child {
  border-bottom: 1px solid #41434c;
}

@media (min-width: 500px) {
  .wrapper-block--quickly .box-list__item {
    width: calc(50% - 10px);
  }
}

@media (min-width: 560px) {
  .footer__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 680px) {
  .wrapper-block {
    padding: 70px 0;
  }

  .header .nav-menu__list {
    padding: 0;
    position: static;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .nav-menu {
    margin-left: auto;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .nav-menu__mob-btn {
    display: none;
  }

  .btn-group {
    margin-top: 32px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .wrapper-block--grey .box-center {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .wrapper-block--grey .box-media {
    max-width: 300px;
  }

  .wrapper-block--grey .box-text {
    margin: 0;
    max-width: 744px;
    text-align: left;
  }

  .wrapper-block--quickly .box-center {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .wrapper-block--quickly .box-list__item {
    width: 100%;
  }

  .wrapper-block--quickly .box-media {
    max-width: 710px;
  }

  .wrapper-block--colortheme .box-media__text {
    bottom: -5%;
  }

  .wrapper-block--experience .box-list__item {
    width: calc(50% - 10px);
  }

  .wrapper-block--dark .btn-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .single {
    padding: 70px 0;
  }

  .single .aside {
    max-width: 220px;
  }

  .single .single__content {
    width: calc(100% - 240px);
  }
}

@media (min-width: 724px) {
  .wrapper-block {
    padding: 90px 0;
  }

  .single {
    padding: 90px 0;
  }
}

@media (min-width: 768px) {
  body {
    font-size: 20px;
  }

  h1 {
    line-height: 68px;
    font-size: 68px;
  }

  h2 {
    line-height: 56px;
    font-size: 44px;
  }

  h3 {
    line-height: 42px;
    font-size: 36px;
  }

  .box-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .header .logo {
    width: 200px;
  }

  .header .nav-menu__link {
    font-size: 20px;
  }

  .lang__current .lang__string {
    font-size: 20px;
  }

  .wrapper-block--quickly .box-list__item {
    width: calc(50% - 10px);
  }

  .wrapper-block--quickly .btn-group {
    gap: 40px;
  }

  .wrapper-block--colortheme .box-media__text {
    bottom: -2%;
  }

  .wrapper-block--experience .box-column {
    gap: 20px;
  }

  .wrapper-block--experience h3,
  .wrapper-block--experience .desc {
    width: calc(50% - 10px);
  }

  .wrapper-block--experience .box-list__title {
    font-size: 24px;
  }

  .single .aside {
    max-width: 260px;
  }

  .single .single__content {
    width: calc(100% - 280px);
  }

  .faq-box__content {
    line-height: 28px;
  }

  .footer .logo {
    width: 200px;
  }

  .footer .nav-menu__link {
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  body {
    line-height: 32px;
    font-size: 24px;
  }

  h1 {
    line-height: 84px;
    font-size: 84px;
  }

  h2 {
    line-height: 72px;
    font-size: 60px;
  }

  h3 {
    line-height: 60px;
    font-size: 52px;
  }

  .wrapper-block {
    padding: 104px 0;
  }

  .wrapper-block--grey {
    padding: 130px 0 162px;
  }

  .box-center {
    padding: 0 40px;
  }

  .header .logo {
    width: 270px;
  }

  .header .nav-menu__link {
    font-size: 24px;
  }

  .btn {
    font-size: 24px;
  }

  .btn-group {
    margin-top: 40px;
  }

  .wrapper-block--grey .box-media {
    max-width: 360px;
  }

  .wrapper-block--colortheme .box-media__text-item img {
    width: 40px;
  }

  .wrapper-block--experience h3,
  .wrapper-block--experience .desc {
    width: 100%;
  }

  .wrapper-block--experience .box-list {
    gap: 24px;
  }

  .wrapper-block--experience .box-list__item {
    width: calc((100% - 48px) / 3);
  }

  .wrapper-block--experience .box-list__item:last-child {
    width: calc((100% - 48px) / 3);
  }

  .wrapper-block--experience .started {
    font-size: 20px;
  }

  .single {
    padding: 104px 0;
  }

  .single .box-center {
    gap: 48px;
  }

  .single .aside {
    font-size: 20px;
  }

  .single .aside {
    max-width: 342px;
  }

  .single .single__content {
    width: calc(100% - 390px);
  }

  .faq-box {
    margin-top: 40px;
  }

  .faq-box__title {
    line-height: 32px;
    font-size: 24px;
  }

  .faq-box__content {
    font-size: 20px;
  }

  .footer .logo {
    width: 270px;
  }

  .footer .nav-menu__link {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .wrapper-block--grey .box-media {
    max-width: 480px;
  }

  .wrapper-block--quickly .desc {
    font-size: 20px;
  }

  .wrapper-block--quickly .box-list__text {
    font-size: 20px;
  }

  .wrapper-block--colortheme .box-media__text-item img {
    width: 50px;
  }

  .wrapper-block--experience .box-column {
    margin-bottom: 64px;
    gap: 36px;
  }

  .wrapper-block--experience .box-list__item {
    padding: 32px;
    gap: 16px;
  }

  .wrapper-block--experience .box-list__icn {
    width: 48px;
  }

  .wrapper-block--experience .box-list__title {
    line-height: 40px;
    font-size: 32px;
  }

  .wrapper-block--experience .started {
    font-size: 24px;
  }

  .wrapper-block--dark {
    padding: 164px 0;
  }

  .faq-box__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}