|
@@ -360,4 +360,81 @@ a.post-title {
|
|
|
.price{
|
|
|
font-size: 50px;
|
|
|
color: $text-color-dark;
|
|
|
-}
|
|
|
+}
|
|
|
+
|
|
|
+.banner {
|
|
|
+ h1 {
|
|
|
+ font-family: 'Poppins', sans-serif;
|
|
|
+ font-size: 3.5rem;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.section {
|
|
|
+ animation-duration: 2.5s;
|
|
|
+ animation-name: fadein;
|
|
|
+ animation-iteration-count: 1;
|
|
|
+ &-title {
|
|
|
+ font-size: 3.1rem;
|
|
|
+ font-family: 'Poppins', sans-serif;
|
|
|
+ font-weight: 700;
|
|
|
+ text-shadow: 0 10px 20px rgba(grey, 0.3);
|
|
|
+ animation-duration: 3s;
|
|
|
+ animation-name: lighting;
|
|
|
+ animation-iteration-count: infinite;
|
|
|
+ }
|
|
|
+ &__footer {
|
|
|
+ animation: none;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.sec-video {
|
|
|
+ padding-top: 20vh;
|
|
|
+ height: 70vh;
|
|
|
+ background: linear-gradient(105deg, rgba(255, 255, 255, 0.438) 0%, rgba(255, 255, 255, 0.5) 100%, transparent 100%), url('https://i.imgur.com/skmbkUy.jpg');
|
|
|
+ background-position: center;
|
|
|
+ @media screen and(max-width: 576px) {
|
|
|
+ padding-top: 10vh;
|
|
|
+ }
|
|
|
+ .container {
|
|
|
+ animation-duration: 2.5s;
|
|
|
+ animation-name: fadein;
|
|
|
+ animation-iteration-count: 1;
|
|
|
+ }
|
|
|
+ .subtitle {
|
|
|
+ color: white;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.section-title.action-title {
|
|
|
+ font-size: 2rem;
|
|
|
+}
|
|
|
+
|
|
|
+.img-shadow {
|
|
|
+ box-shadow: 0 15px 25px 0 rgba(grey, 0.4);
|
|
|
+ transition: all .3s;
|
|
|
+}
|
|
|
+
|
|
|
+.img-shadow:hover {
|
|
|
+ transform: translateY(-.125em);
|
|
|
+ box-shadow: 0 5px 10px 0 rgba(grey, 0.3);
|
|
|
+}
|
|
|
+
|
|
|
+@keyframes fadein {
|
|
|
+ 0% {
|
|
|
+ opacity: 0;
|
|
|
+ transform: translateY(20%);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ opacity: 1;
|
|
|
+ transform: translateY(0%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+@keyframes lighting {
|
|
|
+ 0% {
|
|
|
+ transform: translateY(-0.05em);
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: translateY(0);
|
|
|
+ }
|
|
|
+ }
|