47 lines
862 B
SCSS
47 lines
862 B
SCSS
// Introduction
|
|
.intro {
|
|
background-color: $color-tertiary;
|
|
overflow-x: hidden;
|
|
|
|
// Title
|
|
.title-massive {
|
|
margin-top: -10vw;
|
|
margin-left: -10vw;
|
|
}
|
|
|
|
// Description
|
|
.description {
|
|
margin-bottom: 72px;
|
|
|
|
@include breakpoint (sm) {
|
|
margin: 0 auto 120px;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 40px;
|
|
|
|
@include breakpoint (sm) {
|
|
margin-bottom: 72px;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Carousel
|
|
.carousel {
|
|
position: relative;
|
|
|
|
&:after {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: block;
|
|
width: 100%;
|
|
height: 48vw;
|
|
background-color: $color-tertiary;
|
|
}
|
|
}
|
|
}
|