* {
  box-sizing: border-box;
}

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

small {
  font-size: 80%;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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] {
  -webkit-appearance: button;
}

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;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

[hidden] {
  display: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.row {
  display: flex;
}

.btn {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.btn:hover span,
.btn:hover span:last-child {
  background-color: #4D89D7;
}
.btn:active span,
.btn:active span:last-child {
  background-color: #4F79AF;
  transition: all 0s ease;
}
.btn span {
  background-color: #406DA7;
  padding: 16px 24px;
  border-radius: 24px;
  transition: all 0.3s ease;
}
.btn span:last-child {
  width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #406DA7;
  border-radius: 24px;
  position: relative;
  left: -4px;
}

.container {
  max-width: 1216px;
  margin: 0 auto;
  height: 100%;
}

.header {
  padding: 15px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header svg {
  width: 24px;
  height: 24px;
}
.header__inner {
  display: flex;
  align-items: center;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
  transition: color 0.2s ease;
  z-index: 102;
  align-items: center;
}
.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.header--open .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header--open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header--open .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    background: #0B1623;
    display: flex;
    padding: 80px 24px 24px;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .header__nav ul {
    flex-direction: column;
    gap: 38px;
    width: 100%;
  }
  .header__nav li a {
    font-size: 20px;
  }
  .header--open .header__nav {
    opacity: 1;
    visibility: visible;
  }
}
nav ul {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 0px;
  display: block;
}
nav li a:hover {
  color: #4D89D7;
}
nav li a:active {
  transition: color 0s ease;
  color: #4F79AF;
}

.main {
  background-image: url("../img/bg-top.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  height: 800px;
}
.main::after {
  content: "";
  position: absolute;
  top: 59px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(254, 254, 254, 0.3019607843);
}
.main p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 40px;
  max-width: 708px;
}
.main .container {
  position: relative;
  padding: 176px 0 96px;
  z-index: 1;
}
.main .section-title-white {
  color: #fff;
}
.main__text-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main__img-row {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}

.main__img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: -1;
}

.main__text {
  max-width: 768px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 46px;
}

.main__row {
  display: flex;
  justify-content: space-between;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 116.667%;
  margin: 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 125%;
  margin: 0;
  color: #406DA7;
}

.about {
  padding: 96px 0 0;
}
.about__row {
  gap: 32px;
}
.about__step-title {
  font-size: 24px;
  width: 132px;
  display: block;
  flex-shrink: 0;
  line-height: 1;
  margin-right: 32px;
}
.about__step-text {
  padding-left: 32px;
  position: relative;
  padding-bottom: 24px;
}
.about__step-text:after {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 1px;
  height: 100%;
  background-color: #0B1623;
  opacity: 0.1;
}
.about__step-text::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -4px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #406DA7;
}
.about__step {
  display: flex;
  font-size: 16px;
  line-height: 1.5;
}
.about__step:last-child .about__step-text {
  padding-bottom: 0;
}
.about__step:last-child .about__step-text:after {
  display: none;
}

.about__row {
  display: flex;
}
.about__row:last-child {
  margin-bottom: 0;
}

.about__title {
  max-width: 384px;
}

.about__steps {
  max-width: 800px;
  width: 100%;
}

.services {
  padding: 96px 0;
}
.services__row {
  gap: 96px;
  flex-direction: column;
}
.services__title {
  margin-bottom: 96px;
}

.services-item {
  display: flex;
  gap: 32px;
}
.services-item__num {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  width: 72px;
  flex-shrink: 0;
}
.services-item__img {
  width: 488px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-item h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  margin: 0;
  margin-bottom: 16px;
}
.services-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 16px;
}
.services-item__content-bot-row {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.services-item__content-bot-row span:nth-child(2) {
  font-size: 14px;
}

.footer {
  background: #406DA7;
  padding: 96px 0;
}
.footer nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer nav ul a {
  padding: 0;
}
.footer nav ul a:hover {
  color: #fff;
  opacity: 0.7;
}
.footer nav ul a:active {
  opacity: 0.9;
  transition: opacity 0s ease;
}
.footer__row {
  gap: 32px;
  justify-content: space-between;
}
.footer__text {
  max-width: 592px;
  font-size: 16px;
  line-height: 1.5;
}
.footer__text p {
  color: #fff;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 16px;
}
.footer__text a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.footer__text a:hover {
  color: #fff;
  opacity: 0.7;
}
.footer__text a:active {
  opacity: 0.9;
  transition: opacity 0s ease;
}

@media (max-width: 1300px) {
  h1 {
    font-size: 38px;
  }
  .main__text-top {
    gap: 8px;
  }
  .section-title {
    font-size: 28px;
  }
  .main {
    height: auto;
  }
  .main .container {
    padding-top: 154px;
  }
  .services-item__img {
    width: 270px;
  }
  .main__text {
    max-width: 534px;
  }
  .main__img {
    height: 648px;
  }
  .container {
    max-width: 900px;
  }
  .services__title {
    margin-bottom: 48px;
  }
  .about__step-title {
    width: 126px;
    font-size: 22px;
  }
  .about__row {
    flex-direction: column;
  }
  .about__title {
    max-width: 100%;
  }
  .about__steps {
    max-width: 100%;
  }
  .footer__text {
    max-width: 494px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 704px;
  }
  .main__text {
    max-width: 390px;
  }
  .main__img {
    height: 600px;
  }
  .about__row {
    flex-wrap: wrap;
    gap: 48px;
  }
  .services-item__num {
    width: 50px;
  }
  .services-item h3 {
    font-size: 18px;
  }
  .services-item p {
    font-size: 14px;
  }
  .about__step {
    font-size: 14px;
  }
  .footer__row {
    flex-direction: column;
    gap: 48px;
  }
  .footer__text {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }
  .main .container {
    padding: 112px 24px 56px;
  }
  h1 {
    font-size: 32px;
    margin-bottom: 4px;
  }
  .section-title {
    font-size: 24px;
  }
  .main__text {
    gap: 40px;
    max-width: 100%;
  }
  .main p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .main__img-row {
    display: none;
  }
  .services-item {
    flex-direction: column;
    gap: 16px;
  }
  .services-item__img {
    width: 100%;
    height: auto;
  }
  .services__row {
    gap: 40px;
  }
  .services__title {
    margin-bottom: 40px;
  }
  .btn {
    font-size: 14px;
  }
  .btn span:last-child {
    width: 48px;
    height: 48px;
    border-radius: 24px;
  }
  .header {
    padding: 8px 0;
  }
  .header__inner {
    justify-content: flex-end;
  }
  .main::after {
    top: 57px;
  }
  .about {
    padding: 48px 0 0;
  }
  .about__row {
    gap: 16px;
  }
  .about__step {
    flex-direction: column;
  }
  .about__step-title {
    margin-bottom: 8px;
    font-size: 16px;
    padding-left: 16px;
    width: 100%;
  }
  .about__step-text {
    padding-left: 16px;
    padding-bottom: 16px;
  }
  .about__step-text:after,
  .about__step-text::before {
    top: -19px;
  }
  .about__step-text:after {
    bottom: -5px;
    height: auto;
    left: 2px;
  }
  .about__step-text::before {
    width: 5px;
    height: 5px;
    left: 0px;
  }
  .services {
    padding: 48px 0;
  }
  .services-item h3 {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
  }
  .services-item p {
    margin-bottom: 8px;
  }
  .services-item__content-bot-row {
    font-size: 14px;
  }
  .services-item__content-bot-row span:nth-child(2) {
    font-size: 12px;
  }
  .footer {
    padding: 48px 0;
  }
  .footer__text {
    font-size: 14px;
  }
  nav ul a,
  nav ul a:hover,
  nav ul a:active {
    color: #fff !important;
    opacity: 1 !important;
  }
  .services-item__num {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */