feat: add content to experts

This commit is contained in:
2025-07-11 11:19:36 +03:00
parent dd8cc24925
commit 8fe566e1c9
58 changed files with 1640 additions and 27 deletions

View File

@@ -0,0 +1,75 @@
.Container {
margin: 0 auto;
max-width: rem(1540px);
display: grid;
gap: 10px;
padding: 10px;
@include iftablet {
grid-template-columns: auto 400px;
justify-items: center;
gap: 20px;
padding: 20px;
}
@include iflaptop {
padding: 28px;
}
@include ifdesktop {
padding: 40px;
gap: 40px;
}
}
.Block {
display: flex;
flex-direction: column;
gap: 20px;
h3 {
font-family: $font-roboto;
font-weight: 500;
font-size: 32px;
line-height: 130%;
color: $color-text;
margin-bottom: 20px;
}
p {
font-family: $font-roboto;
font-weight: 400;
font-size: 18px;
line-height: 110%;
color: $color-text;
}
ul {
display: flex;
flex-direction: column;
list-style-type: disc;
margin-left: 16px;
margin-bottom: 16px;
}
li {
font-family: $font-roboto;
font-weight: 300;
font-size: 16px;
line-height: 130%;
color: $color-text;
list-style: unset;
}
.ListShift{
margin-left: 40px;
}
}
.Photo {
.Image {
width: 200px;
height: auto;
}
}