2018-01-20 23:49:35 +00:00
|
|
|
section {
|
|
|
|
min-height: 100vh;
|
2018-01-22 14:26:31 +00:00
|
|
|
position: relative;
|
2018-01-20 23:49:35 +00:00
|
|
|
display: flex;
|
2018-01-22 14:26:31 +00:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
background-color: $background-primary;
|
|
|
|
background-image: linear-gradient(
|
|
|
|
to left bottom,
|
2018-01-22 15:05:07 +00:00
|
|
|
$background-primary 49%,
|
2018-01-22 14:26:31 +00:00
|
|
|
$background-alternative 50%
|
|
|
|
);
|
2018-01-22 15:05:07 +00:00
|
|
|
background-size: 100% 30px;
|
2018-01-22 14:26:31 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: bottom;
|
|
|
|
|
|
|
|
&:nth-of-type(even) {
|
|
|
|
background-color: $background-alternative;
|
|
|
|
background-image: linear-gradient(
|
|
|
|
to left bottom,
|
2018-01-22 15:05:07 +00:00
|
|
|
$background-alternative 49%,
|
2018-01-22 14:26:31 +00:00
|
|
|
$background-primary 50%
|
|
|
|
);
|
2018-01-20 23:49:35 +00:00
|
|
|
}
|
2018-01-22 14:26:31 +00:00
|
|
|
&:last-of-type {
|
|
|
|
background-image: none;
|
2018-01-20 23:49:35 +00:00
|
|
|
}
|
2018-01-22 14:26:31 +00:00
|
|
|
}
|
2018-01-20 23:49:35 +00:00
|
|
|
|
2018-01-22 14:26:31 +00:00
|
|
|
section {
|
2018-01-20 23:49:35 +00:00
|
|
|
.paragraphs {
|
|
|
|
column-count: 2;
|
2018-01-22 15:05:07 +00:00
|
|
|
margin-bottom: 3rem;
|
2018-01-20 23:49:35 +00:00
|
|
|
h3, p {
|
|
|
|
max-width: 300px;
|
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
}
|
|
|
|
p + h3 {
|
|
|
|
margin-top: 50px;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: $screen-phone) {
|
|
|
|
& {
|
|
|
|
column-count: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&#faq {
|
|
|
|
.paragraphs {
|
|
|
|
column-count: unset;
|
|
|
|
}
|
|
|
|
ul {
|
|
|
|
list-style-type: none;
|
|
|
|
li {
|
|
|
|
display: block;
|
|
|
|
margin: 0 300px 0 0;
|
|
|
|
&:nth-child(even) {
|
|
|
|
margin: 0 0 0 300px;
|
|
|
|
}
|
|
|
|
@media screen and (max-width: $screen-phone) {
|
|
|
|
& {
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|