83 lines
1.2 KiB
SCSS
83 lines
1.2 KiB
SCSS
.blocks-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 10px;
|
|
|
|
& > .block {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
max-height: 80px;
|
|
padding: 12px 9px;
|
|
border: solid 2px #3871c1;
|
|
border-radius: 10px;
|
|
gap: 6px;
|
|
|
|
& > ol {
|
|
list-style-type: disc;
|
|
padding-left: 15px;
|
|
|
|
& > li {
|
|
margin-bottom: 2px;
|
|
font-size: 12px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
max-width: 250px;
|
|
margin-top: -21px;
|
|
min-height: 341px;
|
|
}
|
|
|
|
.title {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.description {
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.button-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 100%;
|
|
position: sticky;
|
|
bottom: 0dvh;
|
|
padding: 16px 0;
|
|
-webkit-backdrop-filter: blur(2px);
|
|
backdrop-filter: blur(2px);
|
|
}
|
|
|
|
.advantages {
|
|
width: 100%;
|
|
text-align: center;
|
|
margin: 16px 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.list {
|
|
list-style: disc;
|
|
padding-left: 20px;
|
|
margin: 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.list li {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.lottie-animation {
|
|
width: 0;
|
|
height: 0;
|
|
opacity: 0;
|
|
} |