This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-12 22:13:34 +00:00
|
|
|
@import "../../variables.scss";
|
2020-02-12 17:23:10 +00:00
|
|
|
|
|
|
|
.home-top {
|
|
|
|
text-align: center;
|
|
|
|
padding: 60px 0 50px;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
@media (min-width: $largebp) {
|
|
|
|
padding: 60px 0 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
margin: 0 auto 35px;
|
|
|
|
transform: translateY(40px);
|
|
|
|
opacity: 0;
|
|
|
|
transition: 1s transform, 1s opacity;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active .logo {
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 44px;
|
|
|
|
line-height: 1.14;
|
|
|
|
margin-bottom: 38px;
|
|
|
|
|
|
|
|
@media (min-width: $largebp) {
|
|
|
|
font-size: 56px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 1.33;
|
|
|
|
max-width: 560px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
@media (min-width: $largebp) {
|
|
|
|
font-size: 24px;
|
|
|
|
max-width: 670px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.deco-1 {
|
|
|
|
position: absolute;
|
|
|
|
left: 100%;
|
2020-02-12 22:13:34 +00:00
|
|
|
bottom: 25%;
|
|
|
|
margin-left: 20px;
|
2020-02-12 17:23:10 +00:00
|
|
|
animation: 6s float infinite;
|
|
|
|
|
|
|
|
@media (min-width: 591px) {
|
|
|
|
margin-left: 100px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.deco-2 {
|
|
|
|
position: absolute;
|
|
|
|
left: 100%;
|
2020-02-12 22:13:34 +00:00
|
|
|
bottom: 5%;
|
|
|
|
margin-left: -15px;
|
2020-02-12 17:23:10 +00:00
|
|
|
animation: 8s float infinite;
|
|
|
|
|
|
|
|
@media (min-width: 591px) {
|
|
|
|
margin-left: 50px;
|
|
|
|
}
|
|
|
|
}
|