2023-03-31 22:14:22 +00:00
|
|
|
.cover__container {
|
|
|
|
margin-top: 1px;
|
|
|
|
position: relative;
|
|
|
|
min-height: 40rem;
|
|
|
|
}
|
2023-04-10 19:55:40 +00:00
|
|
|
|
2023-03-31 22:14:22 +00:00
|
|
|
.cover__back {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position-x: center;
|
|
|
|
background-position-y: center;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cover__content {
|
|
|
|
z-index: 10;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-06 06:45:31 +00:00
|
|
|
|
2023-03-31 22:14:22 +00:00
|
|
|
.cover__overlay {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 2;
|
|
|
|
background-color: rgba(14, 14, 14, 0.2);
|
|
|
|
}
|
|
|
|
|
2023-04-10 19:55:40 +00:00
|
|
|
@keyframes cover_title_in {
|
|
|
|
0% {
|
|
|
|
left: -10rem;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-10 17:25:39 +00:00
|
|
|
.cover__title-container {
|
2023-04-10 19:55:40 +00:00
|
|
|
position: relative;
|
2023-05-06 06:45:31 +00:00
|
|
|
padding-top: 1rem;
|
|
|
|
padding-bottom: 1rem;
|
2023-04-10 19:55:40 +00:00
|
|
|
animation: cover_title_in 0.5s cubic-bezier(.39,.58,.57,1);
|
2023-05-06 06:45:31 +00:00
|
|
|
background-color: rgba(1, 1, 1, 0.5);
|
2023-04-10 17:25:39 +00:00
|
|
|
}
|
|
|
|
|
2023-03-31 22:14:22 +00:00
|
|
|
.cover__title {
|
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
|
|
|
font-size: 3em;
|
2023-04-10 17:25:39 +00:00
|
|
|
margin: 0;
|
2023-05-06 06:45:31 +00:00
|
|
|
margin-bottom: 0;
|
2023-04-10 17:25:39 +00:00
|
|
|
z-index: 2;
|
|
|
|
// position: absolute;
|
2023-05-06 06:45:31 +00:00
|
|
|
display: block;
|
2023-04-10 17:25:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.cover__backdrop {
|
2023-03-31 22:14:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.landing__title {
|
|
|
|
font-weight: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.accent-separator {
|
|
|
|
width: 100%;
|
|
|
|
height: 0;
|
|
|
|
border-bottom: .3rem solid $accent;
|
|
|
|
}
|
2023-04-10 19:55:40 +00:00
|
|
|
|
2023-05-26 19:44:22 +00:00
|
|
|
@import 'landing/timeline.scss';
|
|
|
|
|
2023-04-10 19:55:40 +00:00
|
|
|
@media (min-width: $lg-breakpoint) {
|
|
|
|
.cover__back {
|
|
|
|
background-position-x: center;
|
|
|
|
background-position-y: -1.5rem;
|
|
|
|
}
|
|
|
|
}
|
2023-05-26 19:44:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
.compare-section {
|
|
|
|
.compare-items {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-column-gap: 1rem;
|
|
|
|
figure {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.compare-item {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-27 15:28:51 +00:00
|
|
|
@keyframes compare-anim {
|
|
|
|
0% {
|
|
|
|
clip-path: inset(100% 100% 100% 0%);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
clip-path: inset(100% 100% 100% 100%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.compare-items-dynamic {
|
|
|
|
.compare-duet {
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
.compare-hidden {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
clip-path: inset(100% 100% 100% 0%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.compare-duet:hover {
|
|
|
|
.compare-hidden {
|
|
|
|
animation: compare-anim 2s cubic-bezier(.86,0,.07,1);
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-05-26 19:44:22 +00:00
|
|
|
}
|
|
|
|
|
2023-05-27 15:28:51 +00:00
|
|
|
@media (max-width: $sm-breakpoint) {
|
|
|
|
.compare-section {
|
|
|
|
.compare-items {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-05-26 19:44:22 +00:00
|
|
|
.history-summary {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 3fr 1fr;
|
|
|
|
grid-column-gap: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.history-summary__image {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.landing-main {
|
|
|
|
section {
|
|
|
|
border-bottom: 1px solid rgba(1, 1, 1, 0.2);
|
|
|
|
}
|
|
|
|
}
|
2023-05-27 15:28:51 +00:00
|
|
|
|