35 lines
627 B
SCSS
35 lines
627 B
SCSS
// About ================
|
|
.about.page {
|
|
padding: 50px 0 100px;
|
|
|
|
.about {
|
|
&_txt {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
line-height: 36px;
|
|
color: #000000;
|
|
|
|
margin-bottom: 30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.main_title {
|
|
padding-left: 25px;
|
|
position: relative;
|
|
font-size: 22px;
|
|
font-weight: 500;
|
|
line-height: 1.4;
|
|
margin: 15px 0 25px;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 3px;
|
|
height: 100%;
|
|
max-height: 30px;
|
|
background: $main-color;
|
|
}
|
|
} |