112 lines
No EOL
1.8 KiB
SCSS
112 lines
No EOL
1.8 KiB
SCSS
@import "../variables/media";
|
|
|
|
|
|
.section-device {
|
|
padding: var(--container-mob-section) 0;
|
|
|
|
&__container {
|
|
display: flex;
|
|
gap: 10rem;
|
|
@media (max-width: $media-md) {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
&__img {
|
|
max-width: 130rem;
|
|
}
|
|
|
|
&__item {
|
|
background-color: var(--bg-green);
|
|
border-radius: 10rem;
|
|
padding: 30rem 20rem;
|
|
flex-grow: 1;
|
|
@media (max-width: $media-md) {
|
|
padding: 20rem;
|
|
|
|
}
|
|
}
|
|
|
|
&__title-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
@media (max-width: $media-md) {
|
|
margin-bottom: 16rem;
|
|
|
|
}
|
|
}
|
|
|
|
&__icon {
|
|
color: var(--green-button);
|
|
@media (max-width: $media-md) {
|
|
width: 18rem;
|
|
height: 18rem;
|
|
svg {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__content-item {
|
|
padding: 26rem 16rem;
|
|
border-radius: 10rem;
|
|
border: 1px solid var(--common-line-color);
|
|
display: flex;
|
|
gap: 10rem;
|
|
align-items: flex-end;
|
|
justify-content: space-between;
|
|
|
|
&:last-of-type {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
@media (max-width: $media-md) {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
padding: 20rem 16rem;
|
|
}
|
|
}
|
|
|
|
&__content-title {
|
|
margin-bottom: 20rem;
|
|
}
|
|
|
|
&__content {
|
|
display: flex;
|
|
gap: 10rem;
|
|
@media (max-width: $media-md) {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
}
|
|
|
|
.section-step {
|
|
padding-bottom: var(--container-mob-section);
|
|
|
|
&__title {
|
|
margin-bottom: 30rem;
|
|
}
|
|
|
|
&__content {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
justify-content: space-between;
|
|
@media (max-width: $media-md) {
|
|
grid-template-columns:1fr;
|
|
gap: 30rem;
|
|
}
|
|
}
|
|
|
|
&__text {
|
|
margin-top: 15rem;
|
|
}
|
|
&__item {
|
|
@media (max-width: $media-md) {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 23rem;
|
|
}
|
|
}
|
|
} |