|
@@ -5959,7 +5959,6 @@
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
align-items: center;
|
|
|
- background: #920783;
|
|
|
color: white;
|
|
|
border-radius: 20px;
|
|
|
}
|
|
@@ -5968,41 +5967,40 @@
|
|
|
padding: 40px 20px;
|
|
|
}
|
|
|
}
|
|
|
-.background-cta p {
|
|
|
- font-size: 1.25rem;
|
|
|
-}
|
|
|
-@media (max-width: 575px) {
|
|
|
- .background-cta p {
|
|
|
- font-size: 1rem !important;
|
|
|
- }
|
|
|
-}
|
|
|
.background-cta a {
|
|
|
- display: block;
|
|
|
- margin: 15px auto 5px;
|
|
|
- padding: 15px 40px;
|
|
|
- color: white !important;
|
|
|
- font-size: 1.25rem;
|
|
|
- font-weight: bold;
|
|
|
text-decoration: none;
|
|
|
- border-radius: 100px;
|
|
|
- transition: all 0.2s;
|
|
|
- background-color: #ea5413;
|
|
|
- border: 2px solid #920783;
|
|
|
- box-shadow: 0 0 0 4px #ea5413, 0 0 0 4px #920783;
|
|
|
-}
|
|
|
-.background-cta a:hover {
|
|
|
- opacity: 0.8;
|
|
|
}
|
|
|
-.background-cta p {
|
|
|
+.background-cta .pulse-button {
|
|
|
+ display: block;
|
|
|
+ width: 250px;
|
|
|
+ font-size: 1.5rem;
|
|
|
+ font-weight: bold;
|
|
|
+ letter-spacing: 1px;
|
|
|
+ text-transform: uppercase;
|
|
|
text-align: center;
|
|
|
-}
|
|
|
-.background-cta h2 {
|
|
|
+ line-height: 80px;
|
|
|
color: white;
|
|
|
- font-size: 2.5rem;
|
|
|
+ border: none;
|
|
|
+ border-radius: 100px;
|
|
|
+ background: #ea5413;
|
|
|
+ cursor: pointer;
|
|
|
+ box-shadow: 0 0 0 0 rgba(234, 84, 19, 0.5);
|
|
|
+ animation: pulse 1.5s infinite;
|
|
|
}
|
|
|
-@media (max-width: 575px) {
|
|
|
- .background-cta h2 {
|
|
|
- font-size: 2rem;
|
|
|
- margin-bottom: 15px;
|
|
|
+.background-cta .pulse-button:hover {
|
|
|
+ animation: none;
|
|
|
+}
|
|
|
+@keyframes pulse {
|
|
|
+ 0% {
|
|
|
+ transform: scale(0.9);
|
|
|
+ }
|
|
|
+ 70% {
|
|
|
+ transform: scale(1);
|
|
|
+ box-shadow: 0 0 0 50px rgba(255, 102, 40, 0);
|
|
|
+
|
|
|
+ }
|
|
|
+ 100% {
|
|
|
+ transform: scale(0.9);
|
|
|
+ box-shadow: 0 0 0 0 rgba(255, 102, 40, 0);
|
|
|
}
|
|
|
}
|