|
|
@@ -6,23 +6,25 @@ |
|
|
|
justify-content: space-between; |
|
|
|
width: 100vw; |
|
|
|
background-color: white; |
|
|
|
|
|
|
|
animation: fadeInAnimation ease-in 0.5s; |
|
|
|
animation-iteration-count: 1; |
|
|
|
animation-fill-mode: forwards; |
|
|
|
padding-top: 1.5rem; |
|
|
|
|
|
|
|
.header { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
height: 12vh; |
|
|
|
width: 86.6%; |
|
|
|
|
|
|
|
animation: fadeInAnimation ease 0.2s; |
|
|
|
animation-iteration-count: 1; |
|
|
|
animation-fill-mode: forwards; |
|
|
|
|
|
|
|
.stepName { |
|
|
|
display: flex; |
|
|
|
justify-content: center; |
|
|
|
align-items: center; |
|
|
|
flex-direction: column; |
|
|
|
width: 18rem; |
|
|
|
margin-left: 14.5vw; |
|
|
|
margin-left: 15.5vw; |
|
|
|
.step { |
|
|
|
color: #A3A3A3; |
|
|
|
font-size: 1.4rem; |
|
|
@@ -33,25 +35,34 @@ |
|
|
|
color: #363636; |
|
|
|
font-size: 2.4rem; |
|
|
|
font-weight: 300; |
|
|
|
margin-top: 0.5rem; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.image { |
|
|
|
animation: fadeInAnimation ease 0.2s; |
|
|
|
animation-iteration-count: 1; |
|
|
|
animation-fill-mode: forwards; |
|
|
|
} |
|
|
|
|
|
|
|
.descreption { |
|
|
|
color: #868686; |
|
|
|
font-size: 1.4rem; |
|
|
|
width: 80%; |
|
|
|
line-height: 2.8rem; |
|
|
|
|
|
|
|
animation: fadeInAnimation ease 0.2s; |
|
|
|
animation-iteration-count: 1; |
|
|
|
animation-fill-mode: forwards; |
|
|
|
} |
|
|
|
.button { |
|
|
|
animation: fadeInAnimation ease 0.2s; |
|
|
|
animation-iteration-count: 1; |
|
|
|
animation-fill-mode: forwards; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// .fadeIn { |
|
|
|
// transition-delay: 20s; |
|
|
|
// transition-property: height; |
|
|
|
// transition: opacity 0.5s; |
|
|
|
// opacity: 1; |
|
|
|
// } |
|
|
|
|
|
|
|
ion-icon { |
|
|
|
color: var(--primary-button-color); |
|
|
|
width: 1.5rem; |
|
|
@@ -61,14 +72,21 @@ ion-icon { |
|
|
|
ion-button { |
|
|
|
width: 32.8rem; |
|
|
|
height: 4rem; |
|
|
|
font-weight: 400; |
|
|
|
font-weight: 500; |
|
|
|
font-size: 1.6rem; |
|
|
|
font-family: 'Poppins', sans-serif !important; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@keyframes fadeInAnimation { |
|
|
|
0% { |
|
|
|
opacity: 0; |
|
|
|
height: 0; |
|
|
|
transform: scaleY(0) |
|
|
|
} |
|
|
|
100% { |
|
|
|
opacity: 1; |
|
|
|
height: auto; |
|
|
|
transform: scaleY(1) |
|
|
|
} |
|
|
|
} |