@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
}

body {
  background: #F9F9F9;
}

img {
  width: 100%;
}

a {
  color: #000;
  display: inline-block;
  text-decoration: none;
}

li {
  display: inline-block;
}

.container {
  width: 1440px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1435px) {
  .container {
    width: 1024px;
  }
}

.btn {
  display: inline-block;
  outline: none;
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  background: #EF535D;
  cursor: pointer;
  color: #fff;
}
.btn:hover {
  opacity: 0.7;
}

header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
header ul {
  text-align: right;
  width: 40%;
}
header ul li {
  margin-right: 30px;
}

.heder-logo p {
  font-size: 48px;
  font-weight: 900;
  color: #EF535D;
}
.heder-logo span {
  font-size: 18px;
  font-weight: 700;
}

.promo {
  padding: 100px 0;
}
.promo .container {
  padding: 0 200px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1435px) {
  .promo .container {
    padding: 0 100px;
  }
}
.promo .container .promo-left {
  width: 40%;
}
.promo .container .promo-left h1 {
  font-size: 46px;
  font-weight: 900;
}
.promo .container .promo-left h2 {
  font-weight: 400;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 40px;
}
.promo .container .promo-left a {
  width: 138px;
}
.promo .container .promo-right {
  width: 40%;
}

.steps h2 {
  font-size: 72px;
  font-weight: 900;
  margin-bottom: 10px;
}
.steps h3 {
  font-size: 36px;
  font-weight: 400;
}
.steps ul {
  margin-top: 41px;
  padding: 0 120px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1435px) {
  .steps ul {
    padding: 0;
  }
}
.steps ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 30%;
}
.steps ul li span {
  font-size: 144px;
  font-weight: 900;
  line-height: 110px;
}
.steps ul li p {
  width: 70%;
  padding-top: 10px;
}

footer {
  padding: 100px 0;
  text-align: center;
}
footer ul li {
  display: list-item;
  margin-bottom: 10px;
}