60 lines
981 B
SCSS
Raw Normal View History

2023-04-04 19:07:19 +03:00
.step {
position: absolute;
display: flex;
align-items: center;
justify-content: space-between;
top: -100px;
2023-05-24 19:23:24 +03:00
padding: 0 55px 0 85px;
2023-04-04 19:07:19 +03:00
width: 100%;
2023-04-10 18:12:36 +03:00
@media (max-width: 965px) {
justify-content: center;
padding: 0 20px;
}
2023-04-04 19:07:19 +03:00
&__start {
display: flex;
align-items: center;
span {
font-weight: 900;
font-size: 258px;
line-height: 32px;
2023-05-24 19:23:24 +03:00
color: #52b709;
2023-04-04 19:07:19 +03:00
}
p {
margin-left: 20px;
max-width: 230px;
font-weight: 500;
font-size: 22px;
line-height: 32px;
color: #000000;
}
2023-04-10 18:12:36 +03:00
@media (max-width: 965px) {
display: none;
}
2023-04-04 19:07:19 +03:00
}
&__info {
display: flex;
align-items: center;
p {
2023-05-24 19:23:24 +03:00
background: #ddeec6;
2023-04-04 19:07:19 +03:00
border-radius: 44px;
padding: 8px 26px;
font-weight: 400;
font-size: 16px;
line-height: 32px;
}
span {
margin-left: 55px;
font-weight: 400;
font-size: 16px;
line-height: 32px;
}
}
}