feat: add result section

This commit is contained in:
2025-05-30 11:02:09 +03:00
parent 6bd23f4d2d
commit 6a9b8f41e8
12 changed files with 195 additions and 9 deletions

View File

@@ -1,2 +1,68 @@
.Result {
padding: 160px;
.Header {
font-family: $font-open-sans;
font-weight: $font-semi-bold;
font-size: 60px;
line-height: 100%;
color: $color-text;
margin-bottom: 96px;
}
.Row {
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 10vw;
margin-bottom: 80px;
&:nth-child(odd) {
flex-direction: row-reverse;
}
.Review {
flex: 1;
.Title {
font-family: $font-open-sans;
font-weight: $font-regular;
font-size: 48px;
line-height: 100%;
color: $color-text;
margin-bottom: 40px;
}
.Description {
font-family: $font-open-sans;
font-weight: $font-regular;
font-size: 24px;
line-height: 100%;
color: $color-text;
}
}
.Picture {
flex: 1;
position: relative;
overflow: hidden;
border-radius: 28px;
object-fit: contain;
max-width: 720px;
height: 540px;
&:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
z-index: 1;
left: 0;
top: 0;
background-color: rgba(#292E3D, .4);
transition: 250ms background-color;
}
}
}
}